:root {
  --teal: #0f5b5e;
  --blue: #3d7db8;
  --lime: #a6c63a;
  --off-white: #f7f7f5;
  --charcoal: #1f2328;
  --slate: #56616a;
  --line: #dde4df;
  --white: #ffffff;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--off-white);
  color: var(--charcoal);
  font-family: Inter, "Avenir Next", "Segoe UI", Helvetica, Arial, sans-serif;
  line-height: 1.55;
}

a {
  color: inherit;
}

.site-header {
  align-items: center;
  background: rgba(247, 247, 245, 0.94);
  border-bottom: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  min-height: 78px;
  padding: 14px clamp(20px, 5vw, 64px);
  position: sticky;
  top: 0;
  z-index: 10;
}

.brand img {
  display: block;
  height: auto;
  width: clamp(174px, 22vw, 232px);
}

.nav {
  align-items: center;
  display: flex;
  gap: clamp(16px, 3vw, 30px);
  font-size: 14px;
  font-weight: 700;
}

.nav a {
  color: var(--slate);
  text-decoration: none;
}

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

.hero {
  align-items: center;
  display: grid;
  gap: clamp(34px, 6vw, 84px);
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.72fr);
  min-height: calc(100svh - 78px);
  overflow: hidden;
  padding: clamp(58px, 8vw, 96px) clamp(20px, 6vw, 84px) clamp(72px, 10vw, 120px);
  position: relative;
}

.hero::after {
  background: var(--teal);
  bottom: 0;
  content: "";
  height: 8px;
  left: 0;
  position: absolute;
  width: min(44vw, 620px);
}

.hero-content {
  max-width: 770px;
  position: relative;
  z-index: 1;
}

.hero-visual {
  position: relative;
  z-index: 1;
}

.hero-visual::before {
  background:
    linear-gradient(90deg, rgba(15, 91, 94, 0.1) 1px, transparent 1px),
    linear-gradient(180deg, rgba(15, 91, 94, 0.1) 1px, transparent 1px);
  background-size: 42px 42px;
  border-radius: 8px;
  content: "";
  inset: -44px -42px;
  opacity: 0.45;
  position: absolute;
}

.workflow-panel {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 24px 60px rgba(31, 35, 40, 0.12);
  padding: 22px;
  position: relative;
}

.panel-header {
  align-items: center;
  border-bottom: 1px solid var(--line);
  display: flex;
  gap: 12px;
  padding-bottom: 18px;
}

.panel-header img {
  height: 48px;
  width: 48px;
}

.panel-header strong,
.flow-step strong {
  display: block;
  font-size: 15px;
  line-height: 1.25;
}

.panel-header span,
.flow-step span,
.panel-footer span {
  color: var(--slate);
  display: block;
  font-size: 13px;
  line-height: 1.35;
}

.flow-step {
  align-items: center;
  background: var(--off-white);
  border: 1px solid var(--line);
  border-radius: 8px;
  display: flex;
  gap: 14px;
  padding: 16px;
}

.flow-step:first-of-type {
  margin-top: 20px;
}

.step-dot {
  align-items: center;
  border-radius: 999px;
  color: var(--white) !important;
  display: inline-flex !important;
  flex: 0 0 34px;
  font-size: 14px !important;
  font-weight: 800;
  height: 34px;
  justify-content: center;
}

.is-blue .step-dot {
  background: var(--blue);
}

.is-teal .step-dot {
  background: var(--teal);
}

.is-lime .step-dot {
  background: var(--lime);
}

.flow-line {
  background: var(--teal);
  height: 24px;
  margin-left: 32px;
  opacity: 0.38;
  width: 2px;
}

.panel-footer {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 20px;
}

.panel-footer div {
  background: rgba(61, 125, 184, 0.08);
  border: 1px solid rgba(61, 125, 184, 0.16);
  border-radius: 8px;
  padding: 14px;
}

.panel-footer strong {
  color: var(--teal);
  display: block;
  font-size: 26px;
  line-height: 1;
}

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

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

h1 {
  font-size: clamp(42px, 7vw, 76px);
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.02;
  margin-bottom: 24px;
  max-width: 820px;
}

h2 {
  font-size: clamp(30px, 4vw, 44px);
  font-weight: 750;
  letter-spacing: 0;
  line-height: 1.12;
  margin-bottom: 0;
}

h3 {
  font-size: 22px;
  font-weight: 750;
  letter-spacing: 0;
  line-height: 1.18;
  margin-bottom: 12px;
}

.hero-copy {
  color: var(--slate);
  font-size: clamp(18px, 2vw, 22px);
  max-width: 700px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

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

.button.primary {
  background: var(--teal);
  color: var(--white);
}

.button.primary:hover {
  background: #0b484a;
  border-color: #0b484a;
}

.button.secondary {
  color: var(--teal);
}

.button.secondary:hover {
  background: rgba(15, 91, 94, 0.08);
}

.intro-band,
.testimonial-section,
.process-band,
.cta-section {
  background: var(--white);
  border-bottom: 1px solid var(--line);
  border-top: 1px solid var(--line);
}

.intro-grid,
.testimonial-grid,
.process-band,
.section,
.cta-content,
.site-footer {
  margin: 0 auto;
  max-width: 1180px;
  padding-left: clamp(20px, 5vw, 48px);
  padding-right: clamp(20px, 5vw, 48px);
}

.intro-grid {
  align-items: end;
  display: grid;
  gap: 28px;
  grid-template-columns: minmax(0, 0.82fr) minmax(280px, 1fr);
  padding-bottom: 48px;
  padding-top: 48px;
}

.intro-grid p:last-child,
.testimonial-copy > p,
.process-copy p,
.plan-card p,
.workflow-card p,
.site-footer p {
  color: var(--slate);
}

.testimonial-section {
  background:
    linear-gradient(90deg, rgba(15, 91, 94, 0.05) 1px, transparent 1px),
    linear-gradient(180deg, rgba(15, 91, 94, 0.05) 1px, transparent 1px),
    var(--white);
  background-size: 44px 44px;
}

.testimonial-grid {
  align-items: center;
  display: grid;
  gap: clamp(28px, 5vw, 72px);
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.72fr);
  padding-bottom: clamp(58px, 8vw, 86px);
  padding-top: clamp(58px, 8vw, 86px);
}

.testimonial-copy {
  max-width: 760px;
}

.testimonial-copy h2 {
  margin-bottom: 24px;
}

.testimonial-copy blockquote {
  border-left: 7px solid var(--lime);
  margin: 0 0 22px;
  padding: 4px 0 4px 22px;
}

.testimonial-copy blockquote p {
  color: var(--charcoal);
  font-size: clamp(21px, 3vw, 31px);
  font-weight: 750;
  letter-spacing: 0;
  line-height: 1.22;
  margin-bottom: 0;
}

.testimonial-card {
  background: var(--off-white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 18px 42px rgba(31, 35, 40, 0.08);
  padding: 18px;
}

.proof-row {
  align-items: center;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  display: grid;
  gap: 14px;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  padding: 16px;
}

.proof-row + .proof-row {
  margin-top: 12px;
}

.proof-row span {
  color: var(--slate);
  font-size: 14px;
}

.proof-row strong {
  color: var(--teal);
  font-size: 15px;
  line-height: 1.25;
}

.section {
  padding-bottom: clamp(64px, 8vw, 104px);
  padding-top: clamp(64px, 8vw, 104px);
}

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

.workflow-grid,
.plan-grid {
  display: grid;
  gap: 18px;
}

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

.workflow-card,
.plan-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  min-height: 100%;
  padding: 24px;
}

.workflow-card {
  display: flex;
  flex-direction: column;
}

.workflow-card .text-link {
  margin-top: auto;
}

.text-link {
  color: var(--teal);
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
}

.text-link:hover {
  text-decoration: underline;
}

.icon-pill {
  align-items: center;
  background: rgba(166, 198, 58, 0.28);
  border: 1px solid rgba(166, 198, 58, 0.48);
  border-radius: 999px;
  color: var(--teal);
  display: inline-flex;
  font-size: 13px;
  font-weight: 800;
  height: 34px;
  justify-content: center;
  margin-bottom: 28px;
  width: 48px;
}

.process-band {
  align-items: start;
  display: grid;
  gap: 38px;
  grid-template-columns: minmax(0, 0.88fr) minmax(320px, 1.1fr);
  padding-bottom: clamp(54px, 7vw, 78px);
  padding-top: clamp(54px, 7vw, 78px);
}

.process-copy {
  max-width: 510px;
}

.process-copy h2 {
  margin-bottom: 18px;
}

.process-list {
  counter-reset: process;
  display: grid;
  gap: 14px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.process-list li {
  align-items: start;
  background: var(--off-white);
  border: 1px solid var(--line);
  border-radius: 8px;
  display: grid;
  gap: 8px;
  grid-template-columns: 92px 1fr;
  padding: 20px;
}

.process-list strong {
  color: var(--teal);
  font-size: 17px;
}

.process-list span {
  color: var(--slate);
}

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

.plan-card {
  border-top: 7px solid var(--blue);
}

.plan-card.featured {
  border-color: var(--teal);
  box-shadow: 0 18px 38px rgba(31, 35, 40, 0.09);
}

.price {
  color: var(--teal) !important;
  font-size: 26px;
  font-weight: 800;
  margin-bottom: 18px;
}

.cta-content {
  align-items: center;
  display: grid;
  gap: 28px;
  grid-template-columns: 84px minmax(0, 1fr) auto;
  padding-bottom: 52px;
  padding-top: 52px;
}

.cta-mark {
  height: 72px;
  width: 72px;
}

.cta-content h2 {
  max-width: 720px;
}

.site-footer {
  align-items: center;
  display: flex;
  justify-content: space-between;
  padding-bottom: 28px;
  padding-top: 28px;
}

.site-footer p {
  margin: 0;
}

.site-footer p:first-child {
  color: var(--charcoal);
  font-weight: 800;
}

.page-hero {
  align-items: center;
  display: grid;
  gap: clamp(34px, 6vw, 76px);
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.64fr);
  min-height: calc(82svh - 78px);
  padding: clamp(58px, 8vw, 96px) clamp(20px, 6vw, 84px);
}

.page-hero.compact {
  display: block;
  min-height: auto;
}

.page-hero-copy {
  max-width: 850px;
}

.preview-panel {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 18px 42px rgba(31, 35, 40, 0.08);
  padding: 24px;
}

.preview-panel h2 {
  font-size: 28px;
  margin-bottom: 18px;
}

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

.check-list li {
  border: 1px solid var(--line);
  border-radius: 8px;
  display: grid;
  gap: 4px;
  padding: 14px;
}

.check-list strong {
  color: var(--teal);
}

.check-list span {
  color: var(--slate);
}

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

.use-case-table {
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
}

.use-case-table div {
  align-items: start;
  background: var(--white);
  display: grid;
  gap: 18px;
  grid-template-columns: minmax(180px, 0.34fr) minmax(0, 1fr);
  padding: 18px 20px;
}

.use-case-table div + div {
  border-top: 1px solid var(--line);
}

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

.use-case-table span {
  color: var(--slate);
}

.platform-grid,
.platform-strip {
  display: grid;
  gap: 18px;
}

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

.platform-card,
.platform-strip div {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.platform-card {
  border-top: 7px solid var(--teal);
  min-height: 100%;
  padding: 24px;
}

.platform-card.accent-google {
  border-top-color: var(--lime);
}

.platform-card.accent-microsoft {
  border-top-color: var(--blue);
}

.platform-card.accent-operations {
  border-top-color: var(--teal);
}

.platform-card p,
.platform-strip span {
  color: var(--slate);
}

.platform-mark {
  align-items: center;
  background: var(--off-white);
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--teal);
  display: inline-flex;
  font-size: 13px;
  font-weight: 800;
  height: 38px;
  justify-content: center;
  margin-bottom: 24px;
  min-width: 38px;
  padding: 0 10px;
}

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

.platform-strip div {
  display: grid;
  gap: 8px;
  padding: 20px;
}

.platform-strip strong {
  color: var(--teal);
}

.section-link-row {
  margin: 22px 0 0;
}

.gated-section {
  background: var(--white);
  border-bottom: 1px solid var(--line);
  border-top: 1px solid var(--line);
}

.gated-content {
  align-items: start;
  display: grid;
  gap: clamp(28px, 5vw, 64px);
  grid-template-columns: minmax(0, 0.84fr) minmax(320px, 0.72fr);
  margin: 0 auto;
  max-width: 1180px;
  padding: clamp(54px, 7vw, 84px) clamp(20px, 5vw, 48px);
}

.gated-copy {
  max-width: 660px;
}

.gated-copy h2 {
  margin-bottom: 18px;
}

.gated-copy p {
  color: var(--slate);
}

.gated-points {
  display: grid;
  gap: 10px;
  list-style: none;
  margin: 24px 0 0;
  padding: 0;
}

.gated-points li {
  align-items: center;
  display: grid;
  gap: 10px;
  grid-template-columns: 22px 1fr;
}

.gated-points li::before {
  background: var(--lime);
  border-radius: 999px;
  content: "";
  height: 10px;
  width: 10px;
}

.gated-form {
  background: var(--off-white);
  border: 1px solid var(--line);
  border-radius: 8px;
  display: grid;
  gap: 14px;
  padding: 22px;
}

.gated-form label {
  display: grid;
  gap: 7px;
}

.gated-form span {
  color: var(--slate);
  font-size: 12px;
  font-weight: 800;
}

.gated-form input,
.gated-form select,
.gated-form textarea {
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--charcoal);
  font: inherit;
  min-height: 44px;
  padding: 10px 11px;
  width: 100%;
}

.gated-form textarea {
  resize: vertical;
}

.form-note {
  color: var(--slate);
  font-size: 13px;
  margin: 0;
}

.privacy-note {
  border-top: 1px solid var(--line);
  padding-top: 12px;
}

.download-ready {
  border: 1px solid rgba(15, 91, 94, 0.18);
  border-radius: 8px;
  background: #eef7f4;
  padding: 12px;
}

.download-ready[hidden] {
  display: none;
}

@media (max-width: 980px) {
  .hero {
    grid-template-columns: 1fr;
  }

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

  .hero-visual {
    max-width: 560px;
  }

  .workflow-grid,
  .plan-grid,
  .platform-grid,
  .platform-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .intro-grid,
  .testimonial-grid,
  .process-band,
  .page-hero,
  .gated-content,
  .cta-content {
    grid-template-columns: 1fr;
  }

  .cta-content {
    align-items: start;
  }
}

@media (max-width: 680px) {
  .site-header {
    align-items: flex-start;
    gap: 12px;
    min-height: auto;
    position: static;
  }

  .brand img {
    width: 170px;
  }

  .nav {
    gap: 12px;
    margin-top: 9px;
  }

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

  .hero-visual::before {
    inset: -18px;
  }

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

  .workflow-grid,
  .plan-grid,
  .platform-grid,
  .platform-strip,
  .three-up {
    grid-template-columns: 1fr;
  }

  .process-list li {
    grid-template-columns: 1fr;
  }

  .proof-row,
  .use-case-table div {
    grid-template-columns: 1fr;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }
}
