:root {
  --ink: #16211d;
  --ink-soft: #2f3d38;
  --muted: #61706a;
  --paper: #fbfbf8;
  --surface: #ffffff;
  --soft: #edf3ee;
  --soft-blue: #edf4f7;
  --line: #d8e0d8;
  --line-strong: #b9c8bf;
  --green: #1d6a4f;
  --green-dark: #123e31;
  --blue: #315f78;
  --amber: #b86f17;
  --shadow: 0 18px 48px rgba(22, 33, 29, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  overflow-x: hidden;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  z-index: 10;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 15px 64px;
  background: rgba(251, 251, 248, 0.92);
  border-bottom: 1px solid rgba(216, 224, 216, 0.82);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-weight: 780;
  text-decoration: none;
}

.brand-mark {
  display: inline-grid;
  place-items: center;
  width: 32px;
  height: 32px;
  color: #fff;
  background: var(--green);
  border-radius: 6px;
  font-weight: 850;
}

nav {
  display: flex;
  align-items: center;
  gap: 20px;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 680;
}

nav a {
  text-decoration: none;
}

nav a:hover {
  color: var(--green-dark);
}

.hero {
  position: relative;
  min-height: 660px;
  padding: 92px 64px 58px;
  overflow: hidden;
  display: grid;
  align-items: center;
  background:
    linear-gradient(90deg, rgba(251, 251, 248, 0.98) 0%, rgba(251, 251, 248, 0.93) 45%, rgba(251, 251, 248, 0.68) 100%),
    linear-gradient(135deg, #f6f8f4 0%, #eef4ef 48%, #eef4f7 100%);
}

.hero-backdrop {
  position: absolute;
  top: 110px;
  right: -152px;
  width: 680px;
  max-width: 48%;
  padding: 18px;
  color: var(--ink-soft);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(185, 200, 191, 0.75);
  border-radius: 8px;
  box-shadow: var(--shadow);
  transform: rotate(-2deg);
}

.backdrop-toolbar,
.backdrop-row {
  display: grid;
  grid-template-columns: 1.2fr 1fr 82px;
  align-items: center;
  gap: 12px;
}

.backdrop-toolbar {
  min-height: 44px;
  padding: 10px 14px;
  color: #fff;
  background: var(--ink);
  border-radius: 6px 6px 0 0;
  font-size: 0.86rem;
  font-weight: 760;
}

.backdrop-row {
  min-height: 62px;
  padding: 13px 14px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  border-left: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.9);
  font-size: 0.94rem;
}

.backdrop-row span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.backdrop-row.strong {
  border-left: 5px solid var(--green);
}

.backdrop-row.accent {
  border-left: 5px solid var(--amber);
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 760px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--green);
  font-size: 0.82rem;
  font-weight: 820;
  text-transform: uppercase;
  letter-spacing: 0;
}

h1,
h2,
h3,
h4,
p,
li,
dt,
dd {
  overflow-wrap: anywhere;
}

h1 {
  margin: 0;
  max-width: 720px;
  font-size: 4.25rem;
  line-height: 0.98;
  letter-spacing: 0;
}

h2 {
  margin: 0;
  font-size: 3.1rem;
  line-height: 1.04;
  letter-spacing: 0;
}

h3 {
  margin: 0 0 8px;
  font-size: 1.08rem;
  line-height: 1.25;
  letter-spacing: 0;
}

h4 {
  margin: 0 0 12px;
  font-size: 1.24rem;
  line-height: 1.2;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 640px;
  margin: 24px 0 0;
  color: #34423b;
  font-size: 1.3rem;
}

.hero-actions,
.sample-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border: 1px solid var(--green);
  border-radius: 8px;
  font-weight: 780;
  text-decoration: none;
  transition: background 160ms ease, border-color 160ms ease, color 160ms ease;
}

.button.primary {
  color: #fff;
  background: var(--green);
}

.button.primary:hover {
  background: var(--green-dark);
  border-color: var(--green-dark);
}

.button.secondary {
  color: var(--green-dark);
  background: rgba(255, 255, 255, 0.78);
}

.button.secondary:hover {
  background: #fff;
  border-color: var(--green-dark);
}

.button.full {
  width: 100%;
}

.text-link {
  color: var(--green-dark);
  font-weight: 760;
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 700px;
  margin: 38px 0 0;
}

.hero-metrics div {
  min-height: 112px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(216, 224, 216, 0.95);
  border-radius: 8px;
}

.hero-metrics dt {
  font-size: 1.55rem;
  font-weight: 850;
}

.hero-metrics dd {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.proof-strip div {
  min-height: 118px;
  padding: 24px 32px;
  background: var(--surface);
}

.proof-strip strong,
.proof-strip span {
  display: block;
}

.proof-strip strong {
  margin-bottom: 6px;
  color: var(--ink);
}

.proof-strip span {
  color: var(--muted);
}

.section {
  padding: 76px 64px;
  background: var(--paper);
}

.section.muted {
  background: var(--soft);
}

.section-inner {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
}

.two-column,
.pricing-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(300px, 0.8fr);
  gap: 70px;
  align-items: start;
}

.copy-stack p,
.intro p:not(.eyebrow),
.section-heading p,
.pricing-layout p {
  color: var(--muted);
  font-size: 1.08rem;
}

.copy-stack p {
  margin: 0;
}

.copy-stack p + p {
  margin-top: 18px;
}

.section-heading {
  max-width: 780px;
  margin-bottom: 30px;
}

.workflow-grid,
.feature-grid,
.faq-list,
.play-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.workflow-grid article,
.feature-grid article,
.faq-list article,
.play-grid article,
.price-panel {
  padding: 22px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.workflow-grid article {
  min-height: 206px;
}

.workflow-grid span {
  display: inline-flex;
  min-width: 44px;
  height: 28px;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  color: #fff;
  background: var(--blue);
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 820;
}

.workflow-grid p,
.feature-grid p,
.faq-list p,
.play-grid p {
  margin: 0;
  color: var(--muted);
}

.play-grid article {
  min-height: 360px;
}

.play-tag {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  margin-bottom: 18px;
  padding: 5px 10px;
  color: var(--green-dark);
  background: #e2eee8;
  border: 1px solid #c8ddd1;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 820;
}

.play-leads {
  margin-bottom: 14px !important;
  color: #34423b !important;
  font-weight: 720;
}

.mini-list {
  margin: 18px 0 0;
  padding-left: 18px;
  color: #33413b;
  font-size: 0.95rem;
}

.delivery-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 0.9fr);
  gap: 56px;
  align-items: start;
}

.delivery-layout p {
  color: var(--muted);
  font-size: 1.08rem;
}

.delivery-steps {
  display: grid;
  gap: 12px;
}

.delivery-steps article {
  display: grid;
  grid-template-columns: 104px minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  min-height: 84px;
  padding: 18px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.delivery-steps strong {
  color: var(--green-dark);
  font-size: 0.94rem;
}

.delivery-steps span {
  color: var(--muted);
}

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

.sample-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.45fr);
  gap: 32px;
  align-items: end;
}

.sample-summary {
  display: grid;
  gap: 10px;
  margin-bottom: 30px;
}

.sample-summary div {
  padding: 16px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.sample-summary strong,
.sample-summary span {
  display: block;
}

.sample-summary strong {
  font-size: 1.7rem;
  line-height: 1;
}

.sample-summary span {
  margin-top: 5px;
  color: var(--muted);
  font-size: 0.92rem;
}

.brief-preview {
  margin-top: 6px;
  padding: 24px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.brief-header {
  max-width: 820px;
  margin-bottom: 18px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.brief-header h3 {
  margin-bottom: 8px;
  font-size: 1.5rem;
}

.brief-header p:not(.eyebrow) {
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
}

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

.brief-card {
  min-height: 372px;
  padding: 20px;
  background: #fbfbf8;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.brief-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 16px;
}

.lead-rank,
.fit-pill {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 820;
}

.lead-rank {
  min-width: 40px;
  color: #fff;
  background: var(--green);
}

.fit-pill {
  padding: 5px 10px;
  color: var(--green-dark);
  background: #e2eee8;
  border: 1px solid #c8ddd1;
}

.brief-card p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 0.96rem;
}

.brief-card strong {
  color: var(--ink);
}

.export-note {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 20px;
  align-items: center;
  margin-top: 18px;
  padding: 20px;
  background: #f4f7f3;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.export-note p {
  margin: 0;
  color: var(--muted);
}

.export-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 14px;
}

.preview-frame {
  margin: 0 0 22px;
  padding: 12px;
  background: #f4f7f3;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.preview-frame img {
  display: block;
  width: 100%;
  min-height: 240px;
  max-height: 520px;
  object-fit: contain;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 6px;
}

.report-shell {
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.report-toolbar {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 18px;
  color: #fff;
  background: var(--ink);
  font-size: 0.9rem;
  font-weight: 780;
}

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

table {
  width: 100%;
  min-width: 1040px;
  border-collapse: collapse;
  font-size: 0.94rem;
}

th,
td {
  padding: 16px 18px;
  text-align: left;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}

th {
  color: #354940;
  background: #eff4f0;
  font-size: 0.78rem;
  font-weight: 820;
  text-transform: uppercase;
  letter-spacing: 0;
}

td:first-child strong,
td:first-child span {
  display: block;
}

td:first-child strong {
  font-weight: 820;
}

td:first-child span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.86rem;
}

td a {
  color: var(--green-dark);
  font-weight: 760;
}

.price-panel {
  box-shadow: var(--shadow);
}

.price {
  margin: 0 0 16px;
  font-size: 3rem;
  line-height: 1;
  font-weight: 850;
}

.price span {
  color: var(--muted);
  font-size: 1rem;
  font-weight: 650;
}

ul {
  padding-left: 20px;
  margin: 0 0 24px;
  color: #33413b;
}

li + li {
  margin-top: 8px;
}

.small-note {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
}

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

.site-footer {
  padding: 28px 64px;
  color: #fff;
  background: var(--ink);
}

.legal-page {
  min-height: calc(100vh - 88px);
  padding: 84px 64px;
  background:
    linear-gradient(135deg, rgba(237, 243, 238, 0.88), rgba(237, 244, 247, 0.84)),
    var(--paper);
}

.legal-inner {
  max-width: 840px;
  padding: 42px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.legal-inner h1 {
  max-width: none;
  font-size: 3.2rem;
}

.legal-inner h2 {
  margin-top: 34px;
  font-size: 1.36rem;
  line-height: 1.2;
}

.legal-inner p {
  color: var(--muted);
  font-size: 1.02rem;
}

.legal-inner a {
  color: var(--green-dark);
  font-weight: 760;
}

.legal-date {
  margin-top: 12px;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 16px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 16px;
}

.footer-inner a,
.footer-links a {
  color: #d7eee4;
}

@media (max-width: 1080px) {
  .site-header,
  .hero,
  .section,
  .legal-page,
  .site-footer {
    padding-right: 36px;
    padding-left: 36px;
  }

  h1 {
    font-size: 4rem;
  }

  h2 {
    font-size: 2.65rem;
  }

  .hero-backdrop {
    right: -190px;
    max-width: 45%;
    opacity: 0.5;
  }
}

@media (max-width: 900px) {
  .site-header {
    position: static;
  }

  nav {
    display: none;
  }

  .hero {
    min-height: auto;
    padding-top: 70px;
  }

  .hero-backdrop {
    position: relative;
    top: auto;
    right: auto;
    order: 2;
    width: 100%;
    max-width: 100%;
    margin-top: 36px;
    opacity: 1;
    transform: none;
  }

  .hero-inner {
    max-width: 100%;
  }

  .proof-strip,
  .hero-metrics,
  .two-column,
  .pricing-layout,
  .workflow-grid,
  .feature-grid,
  .faq-list,
  .play-grid,
  .brief-grid,
  .export-note,
  .delivery-layout,
  .sample-layout {
    grid-template-columns: 1fr;
  }

  .sample-summary {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-bottom: 0;
  }

  .export-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 620px) {
  .site-header,
  .hero,
  .section,
  .legal-page,
  .site-footer {
    padding-right: 20px;
    padding-left: 20px;
  }

  .brand span:last-child {
    max-width: 220px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  h1 {
    max-width: 350px;
    font-size: 2.18rem;
    line-height: 1.04;
  }

  h2 {
    font-size: 2rem;
  }

  .hero-copy {
    max-width: 350px;
    font-size: 1.08rem;
  }

  .hero-inner,
  .hero-actions,
  .hero-metrics {
    max-width: 350px;
  }

  .hero-actions .button,
  .sample-actions .button {
    width: 100%;
  }

  .hero-metrics,
  .sample-summary {
    grid-template-columns: 1fr;
  }

  .backdrop-toolbar,
  .backdrop-row {
    grid-template-columns: 1fr;
  }

  .backdrop-toolbar {
    gap: 4px;
  }

  .backdrop-row {
    gap: 3px;
  }

  .proof-strip div {
    min-height: auto;
    padding: 22px 20px;
  }

  .section {
    padding-top: 58px;
    padding-bottom: 58px;
  }

  .legal-page {
    padding-top: 48px;
    padding-bottom: 48px;
  }

  .legal-inner {
    padding: 26px;
  }

  .legal-inner h1 {
    font-size: 2.2rem;
  }

  .report-toolbar,
  .footer-inner,
  .footer-links {
    flex-direction: column;
    align-items: flex-start;
  }

  .delivery-steps article {
    grid-template-columns: 1fr;
    gap: 6px;
  }
}
