:root {
  color-scheme: light;
  --ink: #111827;
  --muted: #5b6676;
  --soft: #7a8493;
  --line: #dfe5eb;
  --line-strong: #c8d1db;
  --surface: #f5f7fa;
  --paper: #ffffff;
  --panel: #f9fbfc;
  --green: #17634a;
  --green-strong: #0f4d3a;
  --blue: #255a96;
  --gold: #b97712;
  --navy: #172033;
  --shadow: 0 22px 70px rgba(27, 39, 56, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  color: var(--ink);
  background: var(--surface);
}

body {
  margin: 0;
  min-width: 320px;
}

a {
  color: var(--blue);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

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

h1 {
  margin-bottom: 22px;
  font-size: 5.2rem;
  line-height: 0.96;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 16px;
  font-size: 2.25rem;
  line-height: 1.12;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.08rem;
  line-height: 1.25;
}

p {
  color: var(--muted);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 72px;
  padding: 14px 64px;
  border-bottom: 1px solid rgba(223, 229, 235, 0.86);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: max-content;
  color: var(--ink);
  font-weight: 750;
}

.brand:hover {
  text-decoration: none;
}

.mark {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 8px;
  color: #fff;
  background: linear-gradient(135deg, var(--green-strong), var(--blue));
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
}

nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 18px;
  flex-wrap: wrap;
}

nav a {
  color: var(--muted);
  font-size: 0.91rem;
  font-weight: 650;
}

.button,
.primary,
.secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 8px;
  font-weight: 750;
  white-space: nowrap;
}

.button {
  border: 1px solid var(--line);
  color: var(--ink);
  background: var(--paper);
}

.button:hover,
.primary:hover,
.secondary:hover,
.text-link:hover {
  text-decoration: none;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(560px, 1.18fr);
  gap: 48px;
  align-items: center;
  padding: 36px 64px 30px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(245, 247, 250, 0.98)),
    linear-gradient(115deg, rgba(23, 99, 74, 0.08), rgba(37, 90, 150, 0.04) 54%, rgba(185, 119, 18, 0.05));
}

.hero-copy {
  max-width: 680px;
}

.eyebrow {
  margin-bottom: 14px;
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
}

.lead {
  max-width: 650px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1.24rem;
  line-height: 1.58;
}

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

.primary {
  color: #fff;
  background: var(--green);
  box-shadow: 0 12px 28px rgba(23, 99, 74, 0.18);
}

.secondary {
  color: var(--ink);
  border: 1px solid var(--line);
  background: var(--paper);
}

.product-window {
  overflow: hidden;
  margin-bottom: 0;
  max-height: 540px;
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: var(--shadow);
}

.window-top {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  padding: 0 16px;
  border-bottom: 1px solid var(--line);
  background: #eef3f5;
}

.window-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #9ba7b3;
}

.window-title {
  margin-left: 10px;
  color: var(--soft);
  font-size: 0.78rem;
  font-weight: 760;
}

.dashboard {
  display: grid;
  grid-template-columns: 76px minmax(0, 1fr);
  min-height: 470px;
  background: #f6f8fa;
}

.dashboard-sidebar {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 22px 16px;
  border-right: 1px solid var(--line);
  background: var(--navy);
}

.sidebar-logo {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 8px;
  color: #fff;
  background: var(--green);
  font-size: 0.78rem;
  font-weight: 850;
}

.sidebar-line {
  display: block;
  width: 36px;
  height: 7px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.24);
}

.sidebar-line.short {
  width: 25px;
}

.sidebar-line.active {
  background: rgba(255, 255, 255, 0.78);
}

.dashboard-main {
  min-width: 0;
  padding: 22px;
}

.toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

.toolbar strong {
  display: block;
  margin-top: 2px;
  font-size: 1.05rem;
}

.micro-label {
  display: inline-block;
  color: var(--soft);
  font-size: 0.73rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.sync-pill,
.status {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 800;
}

.sync-pill {
  color: #0d5d46;
  background: #dff3eb;
}

.metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 16px;
}

.metrics div,
.review-stream,
.reply-panel,
.data-card,
.final-cta,
.legal-nav,
.legal-document {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.metrics div {
  min-height: 112px;
  padding: 18px;
}

.metrics span {
  display: block;
  margin-bottom: 12px;
  color: var(--soft);
  font-size: 0.78rem;
  font-weight: 780;
}

.metrics strong {
  display: block;
  color: var(--ink);
  font-size: 2.15rem;
  line-height: 1;
}

.review-workspace {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.review-stream,
.reply-panel {
  padding: 16px;
}

.stream-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}

.stream-header strong {
  font-size: 0.96rem;
}

.stream-header span {
  color: var(--soft);
  font-size: 0.78rem;
  font-weight: 750;
}

.review-row {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr) auto;
  gap: 12px;
  align-items: start;
  padding: 14px 0;
  border-top: 1px solid var(--line);
}

.review-row p {
  margin-bottom: 0;
  font-size: 0.88rem;
  line-height: 1.42;
}

.rating {
  display: grid;
  place-items: center;
  width: 42px;
  height: 34px;
  border: 1px solid #e9d1a7;
  border-radius: 8px;
  color: #87520d;
  background: #fff7e8;
  font-size: 0.78rem;
  font-weight: 850;
}

.status.ready {
  color: #0f5a43;
  background: #e1f3ed;
}

.status.draft {
  color: #254f87;
  background: #e5edf8;
}

.status.open {
  color: #8b560f;
  background: #fff2d9;
}

.reply-panel {
  align-self: start;
  background: #fbfcfd;
}

.reply-panel p {
  margin: 12px 0 18px;
  color: var(--ink);
  font-size: 0.92rem;
  line-height: 1.5;
}

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

.reply-actions span {
  display: block;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--muted);
  background: #fff;
  font-size: 0.78rem;
  font-weight: 750;
}

.trust-band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  border-block: 1px solid var(--line);
  background: var(--line);
}

.trust-item {
  min-height: 118px;
  padding: 26px 64px;
  background: var(--paper);
}

.trust-item strong,
.trust-item span {
  display: block;
}

.trust-item strong {
  margin-bottom: 6px;
  font-size: 0.98rem;
}

.trust-item span {
  color: var(--muted);
  font-size: 0.92rem;
}

.band {
  background: #fff;
  border-bottom: 1px solid var(--line);
}

.section-inner,
.legal-shell {
  max-width: 1180px;
  margin: 0 auto;
  padding: 76px 36px;
}

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

.feature-grid,
.ops-grid {
  display: grid;
  gap: 16px;
}

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

.feature-grid article,
.ops-grid article {
  min-height: 228px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}

.feature-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 30px;
  margin-bottom: 26px;
  border-radius: 8px;
  color: var(--green);
  background: #dff3eb;
  font-size: 0.78rem;
  font-weight: 850;
}

.feature-grid p,
.ops-grid p,
.data-layout p,
.legal-document p,
.legal-hero p,
.final-cta p {
  color: var(--muted);
}

.operations {
  padding-top: 70px;
}

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

.ops-grid article {
  min-height: 214px;
  background: var(--paper);
}

.data-section {
  border-block: 1px solid var(--line);
  background: #edf3f5;
}

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

.text-link {
  display: inline-flex;
  margin-top: 10px;
  color: var(--green);
  font-weight: 800;
}

.data-card {
  overflow: hidden;
}

.data-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px;
  align-items: center;
  min-height: 68px;
  padding: 16px 18px;
}

.data-row + .data-row {
  border-top: 1px solid var(--line);
}

.data-row span {
  color: var(--muted);
  font-size: 0.9rem;
}

.data-row strong {
  color: var(--ink);
  font-size: 0.94rem;
}

.final-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin-top: 70px;
  margin-bottom: 70px;
  padding: 34px;
}

.final-cta h2 {
  margin-bottom: 10px;
}

.final-cta p {
  margin-bottom: 0;
}

.legal-shell {
  max-width: 1120px;
}

.legal-hero {
  max-width: 780px;
  padding: 28px 0 48px;
}

.legal-hero h1 {
  margin-bottom: 16px;
  font-size: 3.7rem;
  line-height: 1;
}

.legal-hero p {
  margin-bottom: 0;
  font-size: 1.14rem;
}

.legal-layout {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 24px;
  align-items: start;
}

.legal-nav {
  position: sticky;
  top: 92px;
  display: grid;
  gap: 12px;
  padding: 20px;
}

.legal-nav strong {
  margin-bottom: 4px;
  font-size: 0.9rem;
}

.legal-nav a {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
}

.legal-document {
  padding: 34px;
}

.legal-document h2 {
  margin-top: 34px;
  margin-bottom: 10px;
  font-size: 1.38rem;
  line-height: 1.22;
}

.legal-document h2:first-child {
  margin-top: 0;
}

.legal-document p {
  font-size: 0.99rem;
}

code {
  padding: 2px 6px;
  border-radius: 6px;
  color: #144936;
  background: #e7f3ee;
  font-size: 0.92em;
}

footer {
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
  padding: 28px 64px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  background: #fff;
  font-size: 0.9rem;
}

footer a {
  color: var(--muted);
}

@media (max-width: 1120px) {
  .site-header,
  .hero,
  .trust-item,
  footer {
    padding-right: 36px;
    padding-left: 36px;
  }

  .hero {
    grid-template-columns: 1fr;
    padding-top: 56px;
  }

  .hero-copy {
    max-width: 820px;
  }

  .product-window {
    max-width: 860px;
  }

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

@media (max-width: 820px) {
  h1 {
    font-size: 3.55rem;
  }

  h2 {
    font-size: 1.86rem;
  }

  .site-header {
    align-items: flex-start;
    flex-direction: column;
  }

  nav {
    justify-content: flex-start;
  }

  .hero {
    padding-top: 44px;
  }

  .trust-band,
  .feature-grid,
  .data-layout,
  .legal-layout {
    grid-template-columns: 1fr;
  }

  .trust-item {
    min-height: auto;
    padding-top: 22px;
    padding-bottom: 22px;
  }

  .dashboard {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .product-window {
    max-height: 340px;
  }

  .dashboard-sidebar {
    display: none;
  }

  .metrics,
  .review-workspace,
  .ops-grid {
    grid-template-columns: 1fr;
  }

  .section-inner,
  .legal-shell {
    padding-right: 24px;
    padding-left: 24px;
  }

  .legal-nav {
    position: static;
  }

  .final-cta {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 560px) {
  h1 {
    font-size: 2.92rem;
  }

  h2 {
    font-size: 1.58rem;
  }

  .site-header,
  .hero,
  footer {
    padding-right: 18px;
    padding-left: 18px;
  }

  .brand {
    white-space: normal;
  }

  nav {
    gap: 12px;
  }

  nav a {
    font-size: 0.86rem;
  }

  .actions .primary,
  .actions .secondary,
  .final-cta .primary {
    width: 100%;
  }

  .actions {
    width: 100%;
  }

  .lead {
    font-size: 1.08rem;
  }

  .toolbar,
  .stream-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .dashboard-main {
    padding: 16px;
  }

  .review-row {
    grid-template-columns: 44px minmax(0, 1fr);
  }

  .review-row .status {
    grid-column: 2;
    justify-self: start;
  }

  .data-row {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .legal-hero h1 {
    font-size: 2.6rem;
  }

  .legal-document,
  .final-cta {
    padding: 24px;
  }
}
