:root {
  --ink: #17201b;
  --muted: #617169;
  --paper: #fbfcf7;
  --panel: #ffffff;
  --line: #dbe2db;
  --moss: #355f45;
  --moss-strong: #214a33;
  --amber: #c47d31;
  --teal: #3c7b7b;
  --rose: #8f4d45;
  --shadow: 0 18px 50px rgba(23, 32, 27, 0.14);
  --shadow-tight: 0 12px 30px rgba(23, 32, 27, 0.12);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

* {
  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;
  letter-spacing: 0;
}

::selection {
  color: #fff;
  background: rgba(143, 77, 69, 0.88);
}

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

button,
input,
textarea,
select {
  font: inherit;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 68px;
  padding: 14px clamp(18px, 4vw, 56px);
  color: #fff;
  background: rgba(19, 28, 24, 0.48);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 760;
  transition: opacity 180ms var(--ease-out), transform 180ms var(--ease-out);
}

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

.brand-mark {
  width: 24px;
  height: 24px;
  border-radius: 6px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0) 48%),
    linear-gradient(135deg, var(--teal), var(--amber));
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.42);
  animation: markPulse 4.8s var(--ease-out) infinite;
}

.nav-links {
  display: flex;
  gap: 22px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 14px;
}

.nav-links a {
  position: relative;
  padding: 6px 0;
}

.nav-links a::after {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  content: "";
  background: currentColor;
  opacity: 0;
  transform: scaleX(0.42);
  transform-origin: left;
  transition: opacity 180ms var(--ease-out), transform 180ms var(--ease-out);
}

.nav-links a:hover::after {
  opacity: 0.7;
  transform: scaleX(1);
}

.nav-cta,
.primary-button,
.secondary-button {
  position: relative;
  overflow: hidden;
  border: 0;
  cursor: pointer;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border-radius: 8px;
  font-weight: 720;
  transform: translateY(0);
  transition:
    border-color 180ms var(--ease-out),
    box-shadow 180ms var(--ease-out),
    transform 180ms var(--ease-out),
    background 180ms var(--ease-out);
}

.nav-cta,
.primary-button {
  color: #fff;
  background: var(--moss);
  box-shadow: 0 10px 24px rgba(33, 74, 51, 0.22);
}

.nav-cta {
  background: rgba(255, 255, 255, 0.14);
  box-shadow: none;
  border: 1px solid rgba(255, 255, 255, 0.26);
}

.secondary-button {
  color: #fff;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.34);
}

.nav-cta:hover,
.primary-button:hover,
.secondary-button:hover,
.sample-downloads a:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(33, 74, 51, 0.25);
}

.nav-cta:active,
.primary-button:active,
.secondary-button:active,
.sample-downloads a:active {
  transform: translateY(0);
}

.button-ripple {
  position: absolute;
  width: 14px;
  height: 14px;
  pointer-events: none;
  background: rgba(255, 255, 255, 0.42);
  border-radius: 999px;
  transform: translate(-50%, -50%) scale(0);
  animation: buttonRipple 640ms var(--ease-out);
}

.compact {
  width: 100%;
}

.hero {
  position: relative;
  min-height: 82vh;
  display: flex;
  align-items: flex-end;
  padding: 110px clamp(22px, 5vw, 72px) 72px;
  overflow: hidden;
  color: #fff;
}

.hero-backdrop,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-backdrop {
  background-image: url("/assets/hero-dashboard.png?v=20260425d");
  background-size: cover;
  background-position: center right;
  transform: scale(1.015);
  animation: heroDrift 18s var(--ease-out) infinite alternate;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(12, 24, 20, 0.9), rgba(12, 24, 20, 0.62) 42%, rgba(12, 24, 20, 0.08) 78%),
    linear-gradient(0deg, rgba(12, 24, 20, 0.72), rgba(12, 24, 20, 0.02) 54%);
}

.hero-content {
  position: relative;
  max-width: 720px;
  animation: heroRise 720ms var(--ease-out) both;
}

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

.hero .eyebrow {
  color: #f0ba75;
}

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

h1 {
  margin-bottom: 14px;
  font-size: clamp(64px, 8vw, 104px);
  line-height: 0.9;
  letter-spacing: 0;
}

h2 {
  font-size: 46px;
  line-height: 1.02;
  letter-spacing: 0;
  margin-bottom: 18px;
}

h3 {
  font-size: 18px;
  margin-bottom: 8px;
}

.hero-copy {
  max-width: 625px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 22px;
  line-height: 1.4;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 28px 0 18px;
}

.source-note {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  line-height: 1.5;
}

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

.strip-item {
  background: #f5f8f1;
  padding: 24px clamp(18px, 4vw, 56px);
  transition: background 200ms var(--ease-out);
}

.strip-item:hover {
  background: #eef5ec;
}

.metric {
  display: block;
  color: var(--moss-strong);
  font-size: 48px;
  font-weight: 800;
  line-height: 1;
}

.label {
  display: block;
  max-width: 360px;
  margin-top: 9px;
  color: var(--muted);
  line-height: 1.45;
}

.band {
  padding: clamp(64px, 9vw, 118px) clamp(20px, 5vw, 72px);
}

section[id] {
  scroll-margin-top: 84px;
}

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

.two-column,
.dashboard-row {
  display: grid;
  grid-template-columns: minmax(0, 0.84fr) minmax(0, 1.16fr);
  gap: clamp(34px, 6vw, 76px);
  align-items: start;
}

.product-band {
  background: var(--paper);
}

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

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

.feature-grid article,
.compliance-grid article,
.price-card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 22px;
  box-shadow: 0 1px 0 rgba(23, 32, 27, 0.03);
  transition:
    border-color 220ms var(--ease-out),
    box-shadow 220ms var(--ease-out),
    transform 220ms var(--ease-out);
}

.feature-grid article:hover,
.compliance-grid article:hover,
.price-card:hover,
.sample-panel:hover,
.faq-grid article:hover,
.step-grid article:hover,
.contact-cards article:hover {
  border-color: rgba(53, 95, 69, 0.32);
  box-shadow: var(--shadow-tight);
  transform: translateY(-3px);
}

.feature-icon {
  display: inline-flex;
  color: var(--teal);
  font-size: 13px;
  font-weight: 800;
  margin-bottom: 18px;
}

.feature-grid p,
.compliance-grid p,
.price-card p,
.section-inner > p,
.two-column p,
.dashboard-row p {
  color: var(--muted);
  line-height: 1.62;
}

.data-band {
  background: #eef4ee;
}

.dashboard-row {
  grid-template-columns: minmax(0, 1.12fr) minmax(300px, 0.88fr);
  align-items: center;
}

.dashboard-row img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 8px;
  border: 1px solid rgba(23, 32, 27, 0.12);
  box-shadow: var(--shadow);
  transition: transform 260ms var(--ease-out), box-shadow 260ms var(--ease-out);
}

.dashboard-row img:hover {
  box-shadow: 0 24px 62px rgba(23, 32, 27, 0.18);
  transform: translateY(-4px);
}

.check-list {
  display: grid;
  gap: 10px;
  padding-left: 18px;
  color: var(--ink);
  line-height: 1.5;
}

.compliance-band {
  background: #fffaf2;
}

.pricing-band {
  background: var(--paper);
}

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

.wide-heading {
  max-width: 920px;
}

.sample-downloads {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.sample-downloads a {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 13px;
  color: var(--moss-strong);
  background: #edf4eb;
  border: 1px solid #d4e4d1;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 720;
  transition: box-shadow 180ms var(--ease-out), transform 180ms var(--ease-out), border-color 180ms var(--ease-out);
}

.sample-band {
  background: #ffffff;
}

.sample-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
  gap: 16px;
  align-items: stretch;
}

.sample-panel {
  min-width: 0;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 22px;
  box-shadow: 0 1px 0 rgba(23, 32, 27, 0.04);
  transition:
    border-color 220ms var(--ease-out),
    box-shadow 220ms var(--ease-out),
    transform 220ms var(--ease-out);
}

.large-panel {
  grid-row: span 2;
}

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

.panel-header h3 {
  margin-bottom: 0;
}

.snapshot-time {
  flex: 0 0 auto;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.4;
}

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

.data-table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
  font-size: 14px;
}

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

.data-table th {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.data-table td:first-child {
  min-width: 270px;
}

.data-table td strong,
.data-table td span {
  display: block;
}

.data-table td span:not(.priority-pill) {
  margin-top: 5px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.35;
}

.priority-pill {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  border-radius: 999px;
  padding: 0 10px;
  font-size: 12px;
  font-weight: 800;
  text-transform: capitalize;
}

.data-table td .priority-pill {
  display: inline-flex;
}

.priority-pill.is-high {
  color: #fff;
  background: var(--rose);
}

.priority-pill.is-medium {
  color: #1c3b32;
  background: #cde2dc;
}

.priority-pill.is-low {
  color: var(--moss-strong);
  background: #edf4eb;
}

.category-bars {
  display: grid;
  gap: 14px;
  margin-top: 18px;
}

.category-bar {
  display: grid;
  gap: 7px;
}

.category-bar-label {
  overflow: hidden;
  color: var(--ink);
  font-size: 13px;
  font-weight: 720;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.category-bar-track {
  height: 10px;
  overflow: hidden;
  background: #edf2ea;
  border-radius: 999px;
}

.category-bar-fill {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, var(--teal), var(--amber));
  border-radius: inherit;
  transform-origin: left;
  animation: barFill 780ms var(--ease-out) both;
}

.alert-facts {
  display: grid;
  grid-template-columns: minmax(105px, 0.42fr) minmax(0, 0.58fr);
  gap: 10px 14px;
  margin: 18px 0 0;
}

.alert-facts dt {
  color: var(--muted);
  font-size: 13px;
  font-weight: 720;
}

.alert-facts dd {
  margin: 0;
  color: var(--ink);
  font-size: 13px;
  line-height: 1.35;
}

.fine-print {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
}

.code-panel pre {
  max-height: 330px;
  overflow: auto;
  margin: 16px 0 0;
  padding: 16px;
  color: #e7f3ec;
  background: #15221b;
  border-radius: 8px;
  font-size: 12px;
  line-height: 1.55;
}

.method-band {
  background: #ffffff;
}

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

.step-grid article {
  min-height: 220px;
  padding: 22px;
  background: #f5f8f1;
  border: 1px solid var(--line);
  border-radius: 8px;
  transition:
    border-color 220ms var(--ease-out),
    box-shadow 220ms var(--ease-out),
    transform 220ms var(--ease-out);
}

.step-grid span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  margin-bottom: 24px;
  color: #fff;
  background: var(--moss);
  border-radius: 999px;
  font-weight: 800;
}

.step-grid p {
  color: var(--muted);
  line-height: 1.55;
}

.compare-band {
  color: #fff;
  background: #203229;
}

.compare-band .eyebrow {
  color: #f0ba75;
}

.compare-band p {
  color: rgba(255, 255, 255, 0.74);
}

.comparison-table {
  overflow: hidden;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
}

.comparison-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.comparison-row:first-child {
  border-top: 0;
}

.comparison-row span {
  padding: 16px;
  line-height: 1.45;
}

.comparison-row span:first-child {
  color: rgba(255, 255, 255, 0.68);
}

.comparison-row span:last-child {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.comparison-row.heading span {
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  font-weight: 800;
}

.faq-band {
  background: #ffffff;
}

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

.faq-grid article {
  padding: 22px;
  background: #f9fbf6;
  border: 1px solid var(--line);
  border-radius: 8px;
  transition:
    border-color 220ms var(--ease-out),
    box-shadow 220ms var(--ease-out),
    transform 220ms var(--ease-out);
}

.faq-grid p {
  color: var(--muted);
  line-height: 1.55;
}

.checkout-status {
  display: inline-flex;
  max-width: 700px;
  min-height: 34px;
  align-items: center;
  padding: 8px 12px;
  color: var(--moss-strong);
  background: #edf4eb;
  border: 1px solid #d4e4d1;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 680;
}

.checkout-status.is-ready {
  color: #fff;
  background: var(--moss);
  border-color: var(--moss);
}

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

.price-card {
  display: flex;
  flex-direction: column;
  min-height: 390px;
}

.price-card.featured {
  border-color: rgba(53, 95, 69, 0.52);
  box-shadow: var(--shadow);
}

.price {
  margin: 8px 0 6px;
  color: var(--moss-strong);
  font-size: 46px;
  font-weight: 840;
}

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

.price-note,
.billing-note,
.field-help {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.price-note {
  margin-bottom: 12px;
}

.billing-note {
  max-width: 760px;
}

.price-card ul {
  display: grid;
  gap: 9px;
  margin: 18px 0 26px;
  padding-left: 18px;
  color: var(--ink);
  line-height: 1.45;
}

.price-card button {
  margin-top: auto;
}

.final-cta {
  padding: 86px clamp(20px, 5vw, 72px);
  color: #fff;
  background: #1d3328;
}

.final-cta .section-inner {
  display: flex;
  gap: 28px;
  align-items: center;
  justify-content: space-between;
}

.final-cta h2 {
  max-width: 780px;
  margin: 0;
}

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

.contact-page {
  min-height: 100vh;
  background:
    linear-gradient(180deg, rgba(238, 244, 238, 0.86), rgba(251, 252, 247, 0.96)),
    var(--paper);
}

.contact-hero {
  min-height: calc(100vh - 70px);
  padding: 126px clamp(20px, 5vw, 72px) 82px;
}

.contact-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(340px, 0.72fr);
  gap: clamp(34px, 6vw, 82px);
  align-items: start;
}

.contact-copy h1 {
  max-width: 760px;
  font-size: clamp(56px, 7vw, 92px);
  line-height: 0.92;
}

.contact-copy > p {
  max-width: 680px;
  color: var(--muted);
  font-size: 20px;
  line-height: 1.52;
}

.contact-cards {
  display: grid;
  gap: 14px;
  margin-top: 32px;
}

.contact-cards article,
.contact-form {
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 1px 0 rgba(23, 32, 27, 0.04);
  backdrop-filter: blur(12px);
}

.contact-cards article {
  padding: 18px;
  transition:
    border-color 220ms var(--ease-out),
    box-shadow 220ms var(--ease-out),
    transform 220ms var(--ease-out);
}

.contact-cards span {
  display: block;
  margin-bottom: 7px;
  color: var(--teal);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.contact-cards a {
  color: var(--moss-strong);
  font-size: 20px;
  font-weight: 780;
}

.contact-cards p {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

.contact-form {
  display: grid;
  gap: 14px;
  padding: clamp(22px, 4vw, 32px);
}

.contact-form label {
  display: grid;
  gap: 6px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 720;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 11px 12px;
  color: var(--ink);
  background: #fbfcf7;
  transition: border-color 180ms var(--ease-out), box-shadow 180ms var(--ease-out), background 180ms var(--ease-out);
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus,
.checkout-form input:focus,
.checkout-form textarea:focus,
.checkout-form select:focus,
.billing-form input:focus {
  outline: 0;
  background: #fff;
  border-color: rgba(53, 95, 69, 0.54);
  box-shadow: 0 0 0 4px rgba(53, 95, 69, 0.11);
}

.contact-form textarea {
  resize: vertical;
}

.checkout-dialog {
  width: min(620px, calc(100vw - 28px));
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0;
  box-shadow: var(--shadow);
}

.checkout-dialog::backdrop {
  background: rgba(18, 27, 23, 0.56);
  backdrop-filter: blur(4px);
}

.checkout-form {
  position: relative;
  display: grid;
  gap: 14px;
  padding: 28px;
  background: #fff;
}

.billing-form {
  display: grid;
  gap: 14px;
  max-width: 560px;
  margin-top: 22px;
}

.billing-form label {
  display: grid;
  gap: 6px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 720;
}

.billing-form [hidden] {
  display: none !important;
}

.billing-form input {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 11px 12px;
  color: var(--ink);
  background: #fbfcf7;
}

.dialog-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 34px;
  height: 34px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--muted);
  background: #fff;
  cursor: pointer;
}

.checkout-form h2 {
  font-size: 28px;
  margin-bottom: 2px;
}

.checkout-form label {
  display: grid;
  gap: 6px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 720;
}

.checkout-form input,
.checkout-form textarea,
.checkout-form select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 11px 12px;
  color: var(--ink);
  background: #fbfcf7;
}

.checkout-form textarea {
  resize: vertical;
}

.field-help {
  font-weight: 520;
}

.category-fieldset {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 9px 12px;
  margin: 0;
  padding: 13px;
  background: #fbfcf7;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.category-fieldset legend {
  padding: 0 4px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 720;
}

.category-fieldset label {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 28px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 620;
}

.category-fieldset input,
.checkbox-row input {
  flex: 0 0 auto;
  width: 16px;
  height: 16px;
}

.checkbox-row {
  grid-template-columns: 18px 1fr;
  align-items: start;
  gap: 10px !important;
  color: var(--muted) !important;
  font-weight: 520 !important;
  line-height: 1.45;
}

.form-status {
  min-height: 20px;
  color: var(--rose);
  font-size: 14px;
}

.pending-page {
  min-height: 100vh;
  background: #eef4ee;
}

.pending-shell {
  width: min(920px, calc(100vw - 32px));
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 22px;
  margin: 0 auto;
  padding: 44px 0;
}

.pending-brand {
  color: var(--ink);
}

.pending-panel {
  padding: 34px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.pending-panel h1 {
  max-width: 720px;
  font-size: 48px;
  line-height: 1;
}

.pending-panel p {
  max-width: 680px;
  color: var(--muted);
  line-height: 1.6;
}

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

.secondary-button.dark-secondary {
  color: var(--moss-strong);
  background: #fff;
  border-color: var(--line);
}

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

.verification-controls {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 24px 0;
}

.verification-controls .is-ready {
  color: #fff;
  background: var(--moss);
  border-color: var(--moss);
}

.verification-summary {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin: 22px 0;
}

.verification-summary div,
.verification-check {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f8fbf5;
}

.verification-summary div {
  padding: 16px;
}

.verification-summary strong {
  display: block;
  color: var(--moss-strong);
  font-size: 28px;
  line-height: 1;
}

.verification-summary span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 720;
}

.verification-list {
  display: grid;
  gap: 10px;
  margin-top: 18px;
  min-width: 0;
}

.verification-check {
  padding: 16px;
  min-width: 0;
  overflow: hidden;
}

.verification-check div {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  min-width: 0;
}

.verification-check strong {
  overflow-wrap: anywhere;
}

.verification-check span {
  padding: 3px 8px;
  color: #fff;
  background: var(--moss);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.verification-check.is-warn span {
  background: var(--amber);
}

.verification-check.is-fail span {
  background: var(--rose);
}

.verification-check p {
  margin: 10px 0 0;
  max-width: none;
}

.verification-check pre {
  overflow: auto;
  max-width: 100%;
  margin: 12px 0 0;
  padding: 12px;
  color: #e7f3ec;
  background: #15221b;
  border-radius: 8px;
  font-size: 12px;
  line-height: 1.45;
}

.signal-cursor {
  position: fixed;
  top: -18px;
  left: -18px;
  z-index: 1000;
  width: 36px;
  height: 36px;
  pointer-events: none;
  opacity: 0;
  border: 1px solid rgba(240, 186, 117, 0.84);
  border-radius: 999px;
  box-shadow: 0 0 28px rgba(240, 186, 117, 0.22);
  transition: opacity 160ms var(--ease-out), width 160ms var(--ease-out), height 160ms var(--ease-out);
}

.signal-cursor::after {
  position: absolute;
  inset: 13px;
  content: "";
  background: rgba(240, 186, 117, 0.72);
  border-radius: inherit;
}

.signal-cursor.is-visible {
  opacity: 1;
}

.signal-cursor.is-pressed {
  width: 28px;
  height: 28px;
}

.reveal-item {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 620ms var(--ease-out), transform 620ms var(--ease-out);
}

.reveal-item.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes heroRise {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroDrift {
  from {
    transform: scale(1.015) translate3d(0, 0, 0);
  }
  to {
    transform: scale(1.045) translate3d(-12px, 0, 0);
  }
}

@keyframes markPulse {
  0%,
  100% {
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.42), 0 0 0 rgba(240, 186, 117, 0);
  }
  50% {
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.42), 0 0 20px rgba(240, 186, 117, 0.32);
  }
}

@keyframes buttonRipple {
  to {
    opacity: 0;
    transform: translate(-50%, -50%) scale(18);
  }
}

@keyframes barFill {
  from {
    transform: scaleX(0);
  }
  to {
    transform: scaleX(1);
  }
}

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

  h1 {
    font-size: 68px;
  }

  h2 {
    font-size: 38px;
  }

  .hero-copy {
    font-size: 21px;
  }

  .metric {
    font-size: 42px;
  }

  .hero {
    min-height: 78vh;
  }

  .signal-strip,
  .two-column,
  .dashboard-row,
  .contact-shell,
  .pricing-grid,
  .verification-summary,
  .sample-grid,
  .step-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .large-panel {
    grid-row: auto;
  }

  .feature-grid,
  .compliance-grid {
    grid-template-columns: 1fr;
  }

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

  .contact-copy h1 {
    font-size: 56px;
  }
}

@media (max-width: 560px) {
  .site-header {
    min-height: 62px;
  }

  h1 {
    font-size: 36px;
  }

  h2 {
    font-size: 31px;
  }

  .hero-copy {
    font-size: 19px;
  }

  .metric {
    font-size: 36px;
  }

  .hero {
    padding: 94px 20px 54px;
  }

  .contact-hero {
    padding: 96px 20px 54px;
  }

  .contact-copy h1 {
    font-size: 38px;
  }

  .contact-copy > p {
    font-size: 18px;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(13, 22, 18, 0.92), rgba(13, 22, 18, 0.68)),
      linear-gradient(0deg, rgba(13, 22, 18, 0.86), rgba(13, 22, 18, 0.58));
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .primary-button,
  .secondary-button {
    width: 100%;
  }

  .panel-header,
  .comparison-row,
  .category-fieldset,
  .pending-actions {
    grid-template-columns: 1fr;
  }

  .panel-header,
  .pending-actions {
    align-items: stretch;
    flex-direction: column;
  }

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

  .snapshot-time {
    white-space: normal;
  }

  .data-table {
    min-width: 0;
  }

  .data-table thead {
    display: none;
  }

  .data-table tr {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px 12px;
    padding: 14px 0;
    border-bottom: 1px solid var(--line);
  }

  .data-table td {
    min-width: 0;
    padding: 0;
    border-bottom: 0;
  }

  .data-table td:first-child {
    grid-column: 1 / -1;
    min-width: 0;
  }

  .data-table td:nth-child(2) {
    grid-column: 1 / -1;
  }

  .data-table td:nth-child(3)::before {
    content: "Change";
  }

  .data-table td:nth-child(4)::before {
    content: "Rows";
  }

  .data-table td:nth-child(5)::before {
    content: "Companies";
  }

  .data-table td:nth-child(6) {
    grid-column: 1 / -1;
  }

  .data-table td:nth-child(6)::before {
    content: "Latest";
  }

  .data-table td:nth-child(n + 3)::before {
    display: block;
    margin-bottom: 2px;
    color: var(--muted);
    font-size: 11px;
    font-weight: 800;
  }

  .checkout-form {
    padding: 24px 18px;
  }

  .pending-panel {
    padding: 24px;
  }

  .pending-panel h1 {
    font-size: 38px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }

  .signal-cursor {
    display: none;
  }
}
