:root {
  color-scheme: light;
  --ink: #142026;
  --deep: #0b2d2f;
  --muted: #66737a;
  --line: #dbe4df;
  --paper: #f4f7f1;
  --white: #ffffff;
  --teal: #007c78;
  --teal-2: #00a39a;
  --leaf: #82a744;
  --sun: #f1b84b;
  --blue: #356a9f;
  --shadow: 0 28px 80px rgba(20, 32, 38, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
  letter-spacing: 0;
}

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(20px, 5vw, 70px);
  color: #ffffff;
  transition: background 180ms ease, box-shadow 180ms ease, color 180ms ease;
}

.site-header.is-scrolled {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 14px 42px rgba(20, 32, 38, 0.1);
  backdrop-filter: blur(16px);
}

.brand,
.main-nav,
.hero-actions,
.hero-points,
.site-footer,
.header-cta {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  font-weight: 900;
  font-size: 1rem;
}

.brand-mark {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 8px;
  background: #ffffff;
  color: var(--teal);
  font-size: 0.72rem;
  letter-spacing: 0;
}

.site-header.is-scrolled .brand-mark {
  color: #ffffff;
  background: var(--teal);
}

.main-nav {
  gap: 24px;
  font-size: 0.9rem;
  font-weight: 700;
}

.main-nav a,
.header-cta {
  opacity: 0.9;
}

.main-nav a:hover,
.header-cta:hover {
  opacity: 1;
}

.header-cta {
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid currentColor;
  border-radius: 8px;
  font-weight: 800;
  font-size: 0.9rem;
}

.hero {
  position: relative;
  min-height: 96vh;
  display: grid;
  align-items: center;
  padding: 128px clamp(20px, 6vw, 78px) 74px;
  overflow: hidden;
  color: #ffffff;
  background:
    linear-gradient(118deg, rgba(9, 31, 35, 0.96) 0%, rgba(9, 49, 49, 0.9) 42%, rgba(171, 91, 45, 0.56) 100%),
    linear-gradient(0deg, #123034, #123034);
}

.hero::before {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 34%;
  background: linear-gradient(0deg, rgba(244, 247, 241, 1), rgba(244, 247, 241, 0));
  pointer-events: none;
}

.hero-media {
  position: absolute;
  inset: 0;
  display: grid;
  align-items: center;
  justify-items: end;
  padding: 128px clamp(20px, 6vw, 78px) 58px;
}

.product-stage {
  position: relative;
  width: min(690px, 50vw);
  min-height: 548px;
}

.dashboard-shell {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow);
  color: var(--ink);
  transform: perspective(1200px) rotateY(-9deg) rotateX(3deg);
  overflow: hidden;
}

.dashboard-topbar {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 20px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--deep), #174f4e 62%, #8c6635);
}

.dashboard-topbar span,
.metric-card span,
.floating-ticket span,
.card-kicker,
.persona-grid span,
.case-header span,
.case-row span,
.panel-title {
  display: block;
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.dashboard-topbar span {
  color: rgba(255, 255, 255, 0.68);
}

.dashboard-topbar strong {
  display: block;
  margin-top: 6px;
  font-size: 1rem;
}

.dashboard-topbar em {
  align-self: start;
  padding: 8px 10px;
  border-radius: 8px;
  color: #17342e;
  background: #c9f0d3;
  font-style: normal;
  font-weight: 900;
  font-size: 0.75rem;
}

.dashboard-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
  padding: 18px;
}

.metric-card,
.pipeline-card,
.offer-card,
.floating-ticket,
.benefit-card,
.journey article,
.persona-grid article,
.assurance-grid article,
.faq-list details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
}

.metric-card {
  min-height: 134px;
  padding: 18px;
}

.impact-card {
  grid-column: span 3;
  color: #ffffff;
  background: linear-gradient(135deg, var(--teal), #0d575b 72%, #315b83);
  border-color: rgba(255, 255, 255, 0.22);
}

.impact-card span,
.impact-card p {
  color: rgba(255, 255, 255, 0.74);
}

.impact-card strong {
  display: block;
  margin: 14px 0 10px;
  font-size: clamp(1.7rem, 3vw, 2.5rem);
  line-height: 1;
}

.impact-card p,
.metric-card p {
  margin: 0;
  line-height: 1.55;
}

.score-card {
  grid-column: span 3;
}

.score-card strong,
.mini-card strong {
  display: block;
  margin-top: 14px;
  font-size: 1.55rem;
}

.score-track {
  height: 12px;
  margin-top: 28px;
  overflow: hidden;
  border-radius: 999px;
  background: #e5ece7;
}

.score-track i {
  display: block;
  width: 66%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--sun), var(--leaf));
}

.mini-card {
  grid-column: span 3;
}

.mini-card.accent {
  background: #fff7e7;
  border-color: #f2d9a8;
}

.pipeline-card,
.offer-card {
  grid-column: span 3;
  min-height: 210px;
  padding: 18px;
}

.pipeline-card ol {
  display: grid;
  gap: 12px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.pipeline-card li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #34454b;
  font-weight: 700;
}

.pipeline-card li span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--teal-2);
}

.offer-card {
  display: grid;
  gap: 10px;
}

.offer-card div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  min-height: 44px;
  padding: 10px 12px;
  border-radius: 8px;
  background: #f2f6f3;
}

.offer-card small {
  color: var(--muted);
  font-weight: 700;
}

.floating-ticket {
  position: absolute;
  z-index: 2;
  min-width: 178px;
  padding: 16px;
  color: var(--ink);
  box-shadow: 0 18px 42px rgba(20, 32, 38, 0.16);
}

.floating-ticket strong {
  display: block;
  margin-top: 6px;
}

.ticket-one {
  top: 92px;
  left: -28px;
}

.ticket-two {
  right: -18px;
  bottom: 92px;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(700px, 100%);
}

.eyebrow {
  margin-bottom: 16px;
  color: var(--teal);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #bcead4;
}

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

h1 {
  max-width: 760px;
  margin-bottom: 24px;
  font-size: clamp(3rem, 6.1vw, 5.55rem);
  line-height: 0.98;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 690px;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1.05rem, 2vw, 1.28rem);
  line-height: 1.75;
}

.hero-actions {
  flex-wrap: wrap;
  gap: 14px;
  margin: 34px 0 24px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 22px;
  border-radius: 8px;
  font-weight: 900;
}

.button.primary {
  color: #ffffff;
  background: linear-gradient(135deg, var(--teal), #1b6f91);
  box-shadow: 0 18px 44px rgba(0, 124, 120, 0.34);
}

.button.secondary {
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.58);
}

.hero-points {
  flex-wrap: wrap;
  gap: 10px;
}

.hero-points span {
  padding: 9px 12px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.82);
  background: rgba(255, 255, 255, 0.08);
  font-weight: 800;
  font-size: 0.84rem;
}

.trust-band {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin: -42px clamp(20px, 6vw, 78px) 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
  box-shadow: 0 22px 60px rgba(20, 32, 38, 0.12);
}

.trust-band div {
  display: grid;
  gap: 8px;
  min-height: 148px;
  padding: 28px;
  background: #ffffff;
}

.trust-band strong {
  font-size: 1.08rem;
}

.trust-band span,
.section-heading p,
.benefit-card p,
.showcase-copy p,
.journey p,
.persona-grid p,
.assurance-grid p,
.faq-list p,
.cta-section p {
  color: var(--muted);
  line-height: 1.65;
}

.section,
.showcase-section,
.comparison-section,
.assurance-section,
.cta-section {
  padding: 104px clamp(20px, 6vw, 78px);
}

.section-heading {
  max-width: 850px;
  margin: 0 auto 46px;
  text-align: center;
}

.section-heading.compact {
  max-width: 760px;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2.15rem, 4vw, 4rem);
  line-height: 1.04;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 12px;
  font-size: 1.16rem;
  line-height: 1.25;
}

.benefit-section {
  background: var(--paper);
}

.benefit-grid {
  display: grid;
  grid-template-columns: 1.18fr 0.91fr 0.91fr;
  gap: 18px;
}

.benefit-card {
  min-height: 330px;
  padding: 28px;
  overflow: hidden;
}

.benefit-card.featured {
  color: #ffffff;
  background:
    linear-gradient(135deg, rgba(0, 124, 120, 0.94), rgba(20, 32, 38, 0.96)),
    #123034;
  border-color: transparent;
}

.benefit-card.featured .card-kicker,
.benefit-card.featured p {
  color: rgba(255, 255, 255, 0.75);
}

.card-kicker {
  margin-bottom: 76px;
  color: var(--teal);
}

.benefit-card.featured .card-kicker {
  margin-bottom: 116px;
}

.showcase-section {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(34px, 6vw, 80px);
  align-items: center;
  color: #ffffff;
  background:
    linear-gradient(135deg, rgba(20, 32, 38, 0.96), rgba(0, 87, 85, 0.9)),
    #142026;
}

.showcase-section .eyebrow {
  color: #bcead4;
}

.showcase-copy p {
  color: rgba(255, 255, 255, 0.76);
}

.case-board {
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.18);
}

.case-header,
.case-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 70px;
  padding: 16px 18px;
  border-radius: 8px;
  background: #ffffff;
  color: var(--ink);
}

.case-row {
  margin-top: 10px;
}

.case-header strong {
  color: var(--teal);
}

.workflow-section {
  background: #ffffff;
}

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

.journey article {
  min-height: 280px;
  padding: 26px;
  background: #fbfcf8;
}

.journey span {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  margin-bottom: 54px;
  border-radius: 8px;
  color: #ffffff;
  background: var(--teal);
  font-weight: 900;
}

.persona-section {
  background: #edf4ee;
}

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

.persona-grid article {
  min-height: 300px;
  padding: 26px;
}

.persona-grid span {
  margin-bottom: 80px;
  color: var(--teal);
}

.comparison-section {
  background: var(--paper);
}

.comparison-table {
  max-width: 1120px;
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 20px 58px rgba(20, 32, 38, 0.09);
}

.comparison-table [role="row"] {
  display: grid;
  grid-template-columns: 1.15fr repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
}

.comparison-table span,
.comparison-table strong {
  min-height: 66px;
  padding: 18px;
  background: #ffffff;
}

.comparison-table .table-head span {
  color: #ffffff;
  background: var(--deep);
  font-weight: 900;
}

.assurance-section {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 34px;
  color: #ffffff;
  background:
    linear-gradient(135deg, #12252c, #0b3d3c 65%, #3c4d30),
    #12252c;
}

.assurance-section .eyebrow {
  color: #bcead4;
}

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

.assurance-grid article {
  min-height: 230px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(255, 255, 255, 0.16);
}

.assurance-grid p {
  color: rgba(255, 255, 255, 0.74);
}

.faq-section {
  background: #ffffff;
}

.faq-list {
  max-width: 930px;
  margin: 0 auto;
  display: grid;
  gap: 12px;
}

.faq-list details {
  padding: 24px 26px;
}

.faq-list summary {
  cursor: pointer;
  font-weight: 900;
  line-height: 1.35;
}

.faq-list p {
  margin: 14px 0 0;
}

.cta-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 34px;
  background: #fff8e8;
}

.cta-section div {
  max-width: 850px;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px;
}

.site-footer {
  justify-content: space-between;
  gap: 24px;
  padding: 30px clamp(20px, 6vw, 78px);
  color: #ffffff;
  background: var(--ink);
}

.site-footer span {
  font-weight: 900;
}

.site-footer p {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  text-align: right;
}

@media (max-width: 1180px) {
  .product-stage {
    width: min(700px, 68vw);
    opacity: 0.74;
  }

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

  .benefit-grid {
    grid-template-columns: 1fr;
  }

  .benefit-card,
  .benefit-card.featured {
    min-height: auto;
  }

  .card-kicker,
  .benefit-card.featured .card-kicker,
  .persona-grid span {
    margin-bottom: 34px;
  }
}

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

  .main-nav,
  .header-cta {
    display: none;
  }

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

  .hero-media {
    justify-items: center;
    padding: 92px 12px 30px;
  }

  .product-stage {
    width: 760px;
    min-height: 560px;
    opacity: 0.28;
    transform: scale(0.82);
  }

  h1 {
    font-size: clamp(2.55rem, 13vw, 4.3rem);
  }

  .trust-band,
  .showcase-section,
  .assurance-section,
  .cta-section {
    grid-template-columns: 1fr;
  }

  .trust-band {
    margin-top: 0;
    border-radius: 0;
    border-left: 0;
    border-right: 0;
  }

  .showcase-section,
  .assurance-section,
  .cta-section {
    align-items: start;
  }

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

  .comparison-table [role="row"] {
    min-width: 760px;
  }

  .site-footer {
    display: grid;
  }

  .site-footer p {
    text-align: left;
  }
}

@media (max-width: 640px) {
  .hero-actions,
  .button,
  .cta-section .button {
    width: 100%;
  }

  .hero-points {
    align-items: stretch;
  }

  .hero-points span {
    width: 100%;
    text-align: center;
  }

  .journey,
  .persona-grid,
  .assurance-grid {
    grid-template-columns: 1fr;
  }

  .section,
  .showcase-section,
  .comparison-section,
  .assurance-section,
  .cta-section {
    padding-top: 76px;
    padding-bottom: 76px;
  }

  .journey article,
  .persona-grid article,
  .assurance-grid article {
    min-height: auto;
  }

  .case-header,
  .case-row {
    display: grid;
    justify-content: stretch;
  }
}

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