:root {
  --ink: #132018;
  --muted: #65746b;
  --line: #dfe7e2;
  --soft: #f4f8f5;
  --panel: #ffffff;
  --green: #26b95f;
  --green-dark: #14743d;
  --charcoal: #111713;
  --shadow: 0 24px 70px rgba(18, 32, 24, 0.14);
  font-family: "Segoe UI Variable", Aptos, Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  min-height: 76px;
  padding: 0 clamp(18px, 5vw, 72px);
  border-bottom: 1px solid rgba(31, 45, 36, 0.1);
  background: rgba(244, 248, 245, 0.9);
  backdrop-filter: blur(14px);
}

.menu-toggle {
  display: none;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 10px;
  background: #fff;
}

.menu-toggle span {
  display: block;
  width: 19px;
  height: 2px;
  margin: 2px 0;
  background: var(--ink);
  transition: transform 160ms ease, opacity 160ms ease;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.brand-link {
  display: inline-flex;
  align-items: center;
}

.brand-link img {
  width: 172px;
  height: auto;
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: 28px;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 600;
}

.site-nav a[aria-current="page"] {
  color: var(--green-dark);
  font-weight: 800;
}

.site-nav a:hover {
  color: var(--ink);
}

.login-link,
.primary-action,
.secondary-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  border-radius: 8px;
  padding: 0 18px;
  font-weight: 700;
  white-space: nowrap;
}

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

.primary-action {
  border: 1px solid var(--green);
  background: var(--green);
  color: #031008;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(420px, 1.05fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
  min-height: calc(100vh - 76px);
  padding: clamp(36px, 6vw, 76px) clamp(18px, 5vw, 72px) 46px;
}

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

.eyebrow {
  display: block;
  margin-bottom: 12px;
  color: var(--green-dark);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 760px;
  margin-bottom: 18px;
  font-size: clamp(2.8rem, 6vw, 5.8rem);
  line-height: 0.98;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 12px;
  font-size: clamp(2rem, 3.6vw, 3.4rem);
  line-height: 1.05;
  letter-spacing: 0;
}

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

p {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.7;
}

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

.dashboard-preview {
  overflow: hidden;
  border: 1px solid rgba(32, 54, 41, 0.13);
  border-radius: 8px;
  background: #111713;
  color: #f1fff5;
  box-shadow: var(--shadow);
}

.dashboard-frame {
  display: grid;
  grid-template-columns: 138px minmax(0, 1fr);
  min-height: 520px;
}

.preview-sidebar {
  display: grid;
  align-content: start;
  gap: 8px;
  padding: 18px 12px;
  border-right: 1px solid rgba(153, 186, 164, 0.18);
  background: #121713;
}

.preview-sidebar img {
  width: 104px;
  margin: 0 auto 14px;
}

.preview-sidebar span {
  border-radius: 6px;
  padding: 9px 10px;
  color: #8fa399;
  font-size: 0.78rem;
  font-weight: 700;
}

.preview-sidebar span.active {
  background: rgba(38, 185, 95, 0.15);
  color: #f4fff7;
}

.preview-workspace {
  min-width: 0;
  background: linear-gradient(135deg, #171b18 0%, #202621 100%);
}

.preview-appbar {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: center;
  gap: 8px;
  min-height: 58px;
  padding: 12px 16px 8px;
  border-bottom: 1px solid rgba(153, 186, 164, 0.2);
}

.preview-appbar button {
  min-height: 38px;
  border: 1px solid rgba(153, 186, 164, 0.22);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
  color: #b8c9be;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.preview-appbar button.active,
.preview-appbar button:hover {
  border-color: rgba(139, 231, 168, 0.52);
  background: rgba(38, 185, 95, 0.18);
  color: #f4fff7;
}

.preview-status {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 12px 16px;
  color: #78a287;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.preview-status span {
  border: 1px solid rgba(122, 145, 132, 0.18);
  border-radius: 8px;
  padding: 6px 8px;
  background: rgba(11, 18, 14, 0.38);
}

.dashboard-shot {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(150px, 0.75fr);
  gap: 12px;
  padding: 0 16px 16px;
}

.shot-card {
  overflow: hidden;
  border: 1px solid rgba(122, 145, 132, 0.24);
  border-radius: 8px;
  padding: 14px;
  background: rgba(32, 38, 33, 0.88);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.16);
}

.shot-sales {
  grid-row: span 2;
}

.shot-calendar {
  grid-row: span 2;
}

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

.shot-card-header small,
.shot-money span,
.shot-row span,
.shot-mini-grid span {
  color: #8fa399;
  font-size: 0.72rem;
}

.shot-chart {
  display: flex;
  align-items: end;
  gap: 9px;
  height: 142px;
  border-left: 1px solid rgba(143, 163, 153, 0.28);
  border-bottom: 1px solid rgba(143, 163, 153, 0.28);
  padding: 0 12px;
}

.shot-chart span {
  flex: 1;
  min-width: 10px;
  background: linear-gradient(180deg, #86efac, #22c55e);
}

.shot-calendar-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 7px;
}

.shot-calendar-grid > span {
  color: #8fa399;
  font-size: 0.68rem;
  font-weight: 800;
  text-align: center;
  text-transform: uppercase;
}

.shot-calendar-grid div {
  min-height: 58px;
  border: 1px solid rgba(143, 163, 153, 0.18);
  border-radius: 6px;
  padding: 7px;
  background: rgba(11, 18, 14, 0.34);
}

.shot-calendar-grid div strong,
.shot-calendar-grid div small {
  display: block;
}

.shot-calendar-grid div strong {
  color: #f4fff7;
  font-size: 0.82rem;
}

.shot-calendar-grid div small {
  overflow: hidden;
  margin-top: 7px;
  color: #8fa399;
  font-size: 0.66rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.shot-calendar-grid div.has-job {
  border-color: rgba(34, 197, 94, 0.35);
  background: rgba(34, 197, 94, 0.09);
}

.shot-calendar-grid div.active {
  background: rgba(34, 197, 94, 0.2);
}

.shot-mini-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 7px;
  margin-top: 12px;
}

.shot-mini-grid div {
  border: 1px solid rgba(34, 197, 94, 0.18);
  border-radius: 6px;
  padding: 8px;
  background: rgba(34, 197, 94, 0.07);
}

.shot-mini-grid strong,
.shot-money strong,
.shot-row strong,
.shot-jobs > strong {
  display: block;
  color: #f4fff7;
}

.shot-money {
  border-left: 3px solid #22c55e;
  padding: 6px 0 8px 10px;
}

.shot-money + .shot-money {
  margin-top: 12px;
}

.shot-money.danger {
  border-left-color: #fb7185;
}

.shot-money strong {
  margin-top: 5px;
  font-size: 1.45rem;
}

.shot-row {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 8px;
  min-height: 42px;
  align-items: center;
  border-top: 1px solid rgba(122, 145, 132, 0.18);
}

.shot-row:first-of-type {
  border-top: 0;
}

.shot-pill {
  margin-top: 9px;
  border-left: 3px solid #22c55e;
  border-radius: 6px;
  padding: 8px 10px;
  background: rgba(11, 18, 14, 0.44);
  color: #cfe7d6;
  font-size: 0.78rem;
  font-weight: 700;
}

.shot-pill.blue {
  border-left-color: #6ee7b7;
}

.shot-pill.yellow {
  border-left-color: #bef264;
}

.software-snapshot {
  --snapshot-bar: 44px;
  --snapshot-scale: 0.48;
  position: relative;
  height: 560px;
  overflow: hidden;
  border: 1px solid rgba(32, 54, 41, 0.13);
  border-radius: 8px;
  background: #111713;
  box-shadow: var(--shadow);
}

.snapshot-browser-bar {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1;
  display: grid;
  grid-template-columns: 70px 1fr auto;
  align-items: center;
  gap: 14px;
  height: var(--snapshot-bar);
  padding: 0 16px;
  border-bottom: 1px solid rgba(153, 186, 164, 0.2);
  color: #f4fff7;
}

.snapshot-browser-bar span {
  width: 42px;
  height: 8px;
  border-radius: 99px;
  background: linear-gradient(90deg, #27c468, #9be7b2);
}

.snapshot-browser-bar small {
  color: #91a99a;
}

.software-snapshot iframe {
  position: absolute;
  top: var(--snapshot-bar);
  left: 0;
  display: block;
  width: calc(100% / var(--snapshot-scale));
  height: calc((560px - var(--snapshot-bar)) / var(--snapshot-scale));
  border: 0;
  transform: scale(var(--snapshot-scale));
  transform-origin: top left;
  pointer-events: none;
}

.section,
.product-story,
.outcome-band,
.workflow-section,
.contact-band {
  margin: 0 clamp(18px, 5vw, 72px);
}

.section {
  padding: 72px 0;
}

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

.outcome-band div {
  min-height: 140px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 22px;
  background: #fff;
  box-shadow: 0 16px 44px rgba(18, 32, 24, 0.06);
}

.outcome-band strong,
.outcome-band span {
  display: block;
}

.outcome-band strong {
  margin-bottom: 10px;
  font-size: 1.1rem;
}

.outcome-band span {
  color: var(--muted);
  line-height: 1.6;
}

.product-story {
  padding: 76px 0;
}

.section-heading {
  max-width: 800px;
  margin-bottom: 28px;
}

.section-heading.centered {
  max-width: 900px;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.section-heading.centered p {
  max-width: 680px;
  margin-right: auto;
  margin-left: auto;
}

.story-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 14px;
  background: rgba(255, 255, 255, 0.62);
}

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

.feature-grid article {
  min-height: 220px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 22px;
  background: #fff;
}

.interactive-features {
  grid-template-columns: 280px minmax(0, 1fr);
  align-items: stretch;
}

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

.feature-tab {
  min-height: 64px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0 18px;
  background: #fff;
  color: var(--muted);
  font: inherit;
  font-weight: 800;
  text-align: left;
  cursor: pointer;
}

.feature-tab.active,
.feature-tab:hover {
  border-color: rgba(38, 185, 95, 0.45);
  background: #17221b;
  color: #f4fff7;
}

.feature-detail {
  display: grid;
  align-content: start;
  min-height: 360px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: clamp(24px, 4vw, 42px);
  background: #fff;
  box-shadow: 0 16px 44px rgba(18, 32, 24, 0.08);
}

.feature-detail > span {
  width: fit-content;
  border: 1px solid rgba(38, 185, 95, 0.25);
  border-radius: 999px;
  padding: 6px 10px;
  color: var(--green-dark);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.feature-detail h3 {
  margin: 20px 0 10px;
  font-size: clamp(1.8rem, 3vw, 3rem);
}

.feature-detail p {
  max-width: 760px;
}

.feature-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 24px;
}

.feature-metrics div {
  border: 1px solid rgba(38, 185, 95, 0.22);
  border-radius: 8px;
  padding: 14px;
  background: rgba(38, 185, 95, 0.07);
}

.feature-metrics strong,
.feature-metrics small {
  display: block;
}

.feature-metrics strong {
  font-size: 1.55rem;
}

.feature-metrics small {
  margin-top: 4px;
  color: var(--muted);
  font-weight: 700;
}

.workflow-section {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(360px, 1fr);
  gap: 36px;
  align-items: start;
  margin-top: 0;
  margin-bottom: 18px;
  padding: 56px;
  border-radius: 8px;
  background: #17221b;
  color: #f4fff7;
}

.workflow-section p {
  color: #b5c8ba;
}

.workflow-section .eyebrow {
  color: #8be7a8;
}

.workflow-steps {
  display: grid;
  gap: 10px;
}

.workflow-steps div {
  display: grid;
  grid-template-columns: 54px 1fr;
  align-items: center;
  column-gap: 14px;
  min-height: 70px;
  border: 1px solid rgba(153, 186, 164, 0.22);
  border-radius: 8px;
  padding: 0 18px;
  background: rgba(255, 255, 255, 0.04);
}

.workflow-steps span {
  grid-row: span 2;
  color: #8be7a8;
  font-weight: 800;
}

.workflow-steps small {
  color: #9fb4a6;
  line-height: 1.4;
}

.contact-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 18px;
  margin-bottom: 46px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 34px;
  background: #fff;
}

.contact-band div {
  max-width: 760px;
}

.contact-band h2 {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
}

.pricing-hero {
  max-width: 940px;
  padding: clamp(54px, 8vw, 104px) clamp(18px, 5vw, 72px) 28px;
}

.pricing-hero h1 {
  margin-bottom: 18px;
}

.pricing-hero p {
  max-width: 760px;
}

.billing-toggle {
  display: inline-flex;
  gap: 4px;
  margin-top: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 4px;
  background: #fff;
}

.billing-toggle button {
  min-width: 96px;
  min-height: 38px;
  border: 0;
  border-radius: 6px;
  background: transparent;
  color: var(--muted);
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.billing-toggle button.active {
  background: #17221b;
  color: #f4fff7;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  padding: 18px clamp(18px, 5vw, 72px) 28px;
}

.pricing-card {
  display: grid;
  align-content: start;
  gap: 16px;
  min-height: 560px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 28px;
  background: #fff;
  box-shadow: 0 16px 44px rgba(18, 32, 24, 0.08);
}

.featured-plan {
  position: relative;
  border-color: rgba(38, 185, 95, 0.45);
  background: #142119;
  color: #f3fff7;
  box-shadow: var(--shadow);
}

.popular-badge {
  position: absolute;
  top: 0;
  left: 50%;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border: 1px solid #178c43;
  border-radius: 999px;
  padding: 8px 14px;
  background: #26b95f;
  color: #07180d;
  box-shadow: 0 8px 20px rgba(18, 32, 24, 0.22);
  font-size: 0.76rem;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
  transform: translate(-50%, -50%);
}

.popular-badge span {
  font-size: 0.9rem;
}

.featured-plan p,
.featured-plan li,
.featured-plan .price span {
  color: #b8c9be;
}

.plan-label {
  width: fit-content;
  border: 1px solid rgba(38, 185, 95, 0.25);
  border-radius: 999px;
  padding: 6px 10px;
  color: var(--green-dark);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.featured-plan .plan-label {
  border-color: rgba(139, 231, 168, 0.36);
  color: #8be7a8;
}

.pricing-card h2 {
  margin-bottom: 0;
  font-size: 1.6rem;
}

.price {
  display: flex;
  align-items: end;
  gap: 6px;
}

.price strong {
  font-size: clamp(2.5rem, 5vw, 4.4rem);
  line-height: 0.9;
}

.price span {
  color: var(--muted);
  font-weight: 700;
}

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

.pricing-card li {
  position: relative;
  padding-left: 24px;
  color: var(--muted);
  line-height: 1.5;
}

.pricing-card li::before {
  position: absolute;
  top: 0.62em;
  left: 0;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--green);
  content: "";
}

.package-details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f7fbf8;
}

.package-details summary {
  position: relative;
  min-height: 46px;
  padding: 13px 42px 13px 14px;
  color: var(--ink);
  font-weight: 850;
  cursor: pointer;
  list-style: none;
}

.package-details summary::-webkit-details-marker {
  display: none;
}

.package-details summary::after {
  position: absolute;
  top: 50%;
  right: 16px;
  width: 8px;
  height: 8px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  content: "";
  transform: translateY(-65%) rotate(45deg);
  transition: transform 0.18s ease;
}

.package-details[open] summary::after {
  transform: translateY(-35%) rotate(225deg);
}

.package-checklist {
  border-top: 1px solid var(--line);
  padding: 14px !important;
}

.package-checklist li::before {
  top: 0.28em;
  left: 2px;
  width: 6px;
  height: 12px;
  border: solid var(--green-dark);
  border-width: 0 2px 2px 0;
  border-radius: 0;
  background: transparent;
  transform: rotate(45deg);
}

.soon-label,
.addon-price,
.compare-soon,
.compare-addon {
  display: inline-flex;
  align-items: center;
  min-height: 22px;
  border: 1px solid rgba(38, 185, 95, 0.28);
  border-radius: 999px;
  padding: 3px 8px;
  background: rgba(38, 185, 95, 0.1);
  color: var(--green-dark);
  font-size: 0.7rem;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
}

.soon-label,
.addon-price {
  margin-left: 7px;
}

.addon-price,
.compare-addon {
  border-color: rgba(16, 38, 24, 0.14);
  background: #eef6f0;
  color: var(--green-dark);
}

.featured-plan .package-details {
  border-color: rgba(139, 231, 168, 0.26);
  background: rgba(255, 255, 255, 0.04);
}

.featured-plan .package-details summary {
  color: #f3fff7;
}

.featured-plan .package-checklist {
  border-top-color: rgba(139, 231, 168, 0.22);
}

.featured-plan .package-checklist li::before {
  border-color: #8be7a8;
}

.featured-plan .soon-label,
.featured-plan .addon-price {
  border-color: rgba(139, 231, 168, 0.42);
  background: rgba(139, 231, 168, 0.12);
  color: #bdf7cd;
}

.pricing-card .primary-action,
.pricing-card .secondary-action {
  align-self: end;
  margin-top: auto;
}

.plan-compare {
  margin: 8px clamp(18px, 5vw, 72px) 34px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 16px 44px rgba(18, 32, 24, 0.08);
  overflow: hidden;
}

.plan-compare summary {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 82px;
  padding: 22px 64px 22px 26px;
  color: var(--ink);
  cursor: pointer;
  list-style: none;
}

.plan-compare summary::-webkit-details-marker {
  display: none;
}

.plan-compare summary::after {
  position: absolute;
  top: 50%;
  right: 26px;
  width: 28px;
  height: 28px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--green-dark);
  content: "+";
  font-size: 1.2rem;
  font-weight: 900;
  line-height: 26px;
  text-align: center;
  transform: translateY(-50%);
}

.plan-compare[open] summary::after {
  content: "-";
}

.plan-compare summary span {
  font-size: clamp(1.2rem, 2vw, 1.55rem);
  font-weight: 900;
}

.plan-compare summary small {
  max-width: 380px;
  color: var(--muted);
  font-weight: 800;
  line-height: 1.35;
  text-align: right;
}

.compare-table-wrap {
  border-top: 1px solid var(--line);
  overflow-x: auto;
}

.compare-table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
}

.compare-table th,
.compare-table td {
  border-bottom: 1px solid rgba(15, 28, 20, 0.08);
  padding: 14px 16px;
  text-align: center;
  vertical-align: middle;
}

.compare-table tr:last-child th,
.compare-table tr:last-child td {
  border-bottom: 0;
}

.compare-table th:first-child {
  width: 34%;
  text-align: left;
}

.compare-table thead th {
  background: #f4f8f5;
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.compare-table tbody th {
  color: var(--ink);
  font-size: 0.92rem;
  font-weight: 850;
}

.compare-table td {
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 850;
  line-height: 1.35;
}

.compare-table .featured-column {
  background: rgba(38, 185, 95, 0.045);
}

.compare-table thead .featured-column {
  background: rgba(38, 185, 95, 0.13);
  color: var(--green-dark);
}

.compare-check {
  display: inline-grid;
  place-items: center;
  width: 24px;
  height: 24px;
  border-radius: 999px;
  background: rgba(38, 185, 95, 0.14);
  color: var(--green-dark);
  font-size: 0.9rem;
  font-weight: 900;
  line-height: 1;
}

.compare-soon {
  margin-left: 8px;
  vertical-align: middle;
}

.compare-addon {
  display: flex;
  width: fit-content;
  margin-top: 7px;
  margin-right: auto;
  margin-left: auto;
}

.compare-dash {
  color: #98a49b;
  font-weight: 900;
}

.pricing-note {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin: 18px clamp(18px, 5vw, 72px) 46px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 34px;
  background: #fff;
}

.pricing-note div {
  max-width: 760px;
}

.pricing-note h2 {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
}

.plan-fit {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(230px, 0.42fr) auto;
}

.plan-fit-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.plan-fit-list li {
  position: relative;
  padding-left: 28px;
  color: var(--ink);
  font-size: 0.95rem;
  font-weight: 850;
  line-height: 1.35;
}

.plan-fit-list li::before {
  position: absolute;
  top: 0.12em;
  left: 0;
  width: 18px;
  height: 18px;
  border-radius: 999px;
  background: rgba(38, 185, 95, 0.14);
  color: var(--green-dark);
  content: "\2713";
  font-size: 0.78rem;
  font-weight: 900;
  line-height: 18px;
  text-align: center;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) minmax(320px, 0.8fr);
  gap: 54px;
  padding: 64px clamp(20px, 7vw, 112px) 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background: #0d130f;
  color: #fff;
}

.footer-brand {
  max-width: 440px;
}

.footer-brand img {
  width: 180px;
  height: auto;
  filter: brightness(1.12);
}

.footer-brand p {
  max-width: 380px;
  margin: 22px 0 0;
  color: #9daf9f;
}

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

.footer-links > div {
  display: grid;
  align-content: start;
  gap: 12px;
}

.footer-links strong {
  margin-bottom: 5px;
  color: #75e89b;
  font-size: 0.78rem;
  text-transform: uppercase;
}

.footer-links a {
  color: #d6e0d9;
}

.footer-links a:hover {
  color: #fff;
}

.footer-bottom {
  grid-column: 1 / -1;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 24px;
  color: #849589;
  font-size: 0.82rem;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
summary:focus-visible {
  outline: 3px solid rgba(38, 185, 95, 0.35);
  outline-offset: 3px;
}

@media (max-width: 980px) {
  .site-header {
    position: sticky;
    grid-template-columns: 1fr auto auto;
    gap: 10px;
  }

  .menu-toggle {
    display: grid;
  }

  .site-nav {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    display: none;
    justify-content: stretch;
    gap: 0;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    padding: 10px clamp(18px, 5vw, 72px) 18px;
    background: rgba(250, 252, 250, 0.98);
    box-shadow: 0 18px 38px rgba(18, 32, 24, 0.12);
  }

  .site-nav.open {
    display: grid;
  }

  .site-nav a {
    border-bottom: 1px solid var(--line);
    padding: 15px 4px;
  }

  .site-nav a:last-child {
    border-bottom: 0;
  }

  .hero,
  .workflow-section {
    grid-template-columns: 1fr;
  }

  .dashboard-preview {
    min-width: 0;
  }

  .software-snapshot {
    min-width: 0;
  }

  .outcome-band,
  .feature-grid,
  .interactive-features,
  .pricing-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .interactive-features {
    grid-template-columns: 1fr;
  }

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

  .feature-tab {
    min-height: 52px;
    padding: 0 12px;
    text-align: center;
  }

  .site-footer {
    grid-template-columns: 1fr;
  }

  .plan-fit {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .brand-link img {
    width: 124px;
  }

  .site-header {
    min-height: 72px;
    padding-right: 14px;
    padding-left: 14px;
  }

  .login-link {
    min-height: 40px;
    padding: 0 12px;
    font-size: 0.84rem;
  }

  .hero {
    padding-top: 30px;
  }

  .outcome-band,
  .feature-grid,
  .interactive-features,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .feature-tab-list,
  .feature-metrics {
    grid-template-columns: 1fr;
  }

  .dashboard-frame,
  .dashboard-shot,
  .shot-mini-grid {
    grid-template-columns: 1fr;
  }

  .preview-sidebar {
    display: none;
  }

  .software-snapshot {
    --snapshot-scale: 0.38;
    height: 500px;
  }

  .software-snapshot iframe {
    height: calc((500px - var(--snapshot-bar)) / var(--snapshot-scale));
  }

  .workflow-section,
  .contact-band,
  .plan-compare summary,
  .pricing-note {
    padding: 22px;
  }

  .contact-band,
  .pricing-note {
    align-items: flex-start;
    flex-direction: column;
  }

  .plan-compare {
    margin: 4px 20px 30px;
  }

  .plan-compare summary {
    padding-right: 58px;
  }

  .plan-compare summary small {
    text-align: left;
  }

  .site-footer {
    padding-top: 52px;
  }

  .footer-links {
    grid-template-columns: 1fr 1fr;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}
