:root {
  color: #202223;
  background: #f6f6f7;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at top left, rgba(0, 128, 96, 0.12), transparent 30rem),
    linear-gradient(180deg, #ffffff 0%, #f6f6f7 44%, #ffffff 100%);
}

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

button,
input {
  font: inherit;
}

.page {
  min-height: 100vh;
  overflow: hidden;
}

.nav {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 18px 0;
  backdrop-filter: blur(18px);
}

.logo,
.navLinks,
.trustRow,
.heroActions,
.mockupHeader,
.syncLog {
  display: flex;
  align-items: center;
}

.logo {
  gap: 10px;
  font-weight: 750;
  letter-spacing: -0.03em;
}

.logoMark {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 10px;
  background: #008060;
  color: #ffffff;
  box-shadow: 0 12px 28px rgba(0, 128, 96, 0.22);
}

.navLinks {
  gap: 24px;
  color: #616161;
  font-size: 14px;
  font-weight: 600;
}

.navLinks a:hover {
  color: #202223;
}

.navCta,
.primaryButton,
.secondaryButton,
.installForm button {
  border-radius: 999px;
  font-weight: 700;
}

.navCta {
  padding: 10px 16px;
  background: #202223;
  color: #ffffff;
  font-size: 14px;
}

.hero,
.problemSection,
.section,
.exampleSection,
.useCasesSection,
.reliabilitySection,
.pricingSection,
.ctaSection {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(380px, 0.98fr);
  gap: 56px;
  align-items: center;
  padding: 88px 0 72px;
}

.heroCopy h1,
.sectionHeader h2,
.problemSection h2,
.exampleSection h2,
.reliabilitySection h2,
.ctaSection h2 {
  margin: 0;
  color: #111827;
  letter-spacing: -0.06em;
}

.heroCopy h1 {
  max-width: 760px;
  font-size: clamp(3.3rem, 7vw, 6.8rem);
  line-height: 0.88;
}

.eyebrow {
  margin: 0 0 14px;
  color: #008060;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.heroText {
  max-width: 620px;
  margin: 24px 0 0;
  color: #4b5563;
  font-size: clamp(1.08rem, 1.8vw, 1.32rem);
  line-height: 1.6;
}

.heroActions {
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 34px;
}

.primaryButton,
.secondaryButton,
.installForm button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border: 1px solid transparent;
}

.primaryButton,
.installForm button {
  background: #008060;
  color: #ffffff;
  box-shadow: 0 14px 30px rgba(0, 128, 96, 0.18);
}

.secondaryButton {
  border-color: #d4d4d4;
  background: #ffffff;
  color: #202223;
}

.trustRow {
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.trustRow span,
.useCaseGrid span {
  border: 1px solid #d4d4d4;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: #616161;
  font-size: 13px;
  font-weight: 650;
}

.trustRow span {
  padding: 8px 12px;
}

.heroMockup,
.exampleCard,
.pricingGrid article,
.featureCard,
.faqList article,
.ctaSection {
  border: 1px solid #e5e7eb;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 24px 70px rgba(17, 24, 39, 0.08);
}

.heroMockup {
  position: relative;
  padding: 22px;
  border-radius: 28px;
}

.heroMockup::before {
  position: absolute;
  inset: -1px;
  z-index: -1;
  border-radius: 29px;
  background: linear-gradient(135deg, rgba(0, 128, 96, 0.35), transparent 45%);
  content: "";
}

.mockupHeader {
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 18px;
  border-bottom: 1px solid #e5e7eb;
}

.mockupLabel {
  color: #6b7280;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.mockupHeader h2 {
  margin: 4px 0 0;
  font-size: 26px;
  letter-spacing: -0.04em;
}

.syncedBadge {
  padding: 8px 12px;
  border-radius: 999px;
  background: #ecfdf3;
  color: #008060;
  font-size: 13px;
  font-weight: 800;
}

.metricGrid,
.featureGrid,
.steps,
.pricingGrid,
.painGrid {
  display: grid;
  gap: 16px;
}

.metricGrid {
  grid-template-columns: repeat(3, 1fr);
  margin: 20px 0;
}

.metricGrid div {
  padding: 16px;
  border: 1px solid #e5e7eb;
  border-radius: 18px;
  background: #f8fafc;
}

.metricGrid span,
.componentItem span,
.componentItemCritical span,
.exampleCard small {
  display: block;
  color: #6b7280;
  font-size: 12px;
  font-weight: 650;
}

.metricGrid strong {
  display: block;
  margin-top: 6px;
  font-size: 22px;
  letter-spacing: -0.04em;
}

.componentList {
  display: grid;
  gap: 10px;
}

.componentItem,
.componentItemCritical {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 14px;
  border: 1px solid #e5e7eb;
  border-radius: 18px;
  background: #ffffff;
}

.componentItemCritical {
  border-color: rgba(217, 119, 6, 0.28);
  background: #fffbeb;
}

.componentPhoto {
  display: block;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(0, 128, 96, 0.12);
  border-radius: 14px;
  background: #f1f8f5;
  box-shadow: 0 8px 18px rgba(17, 24, 39, 0.08);
  object-fit: cover;
}

.syncLog {
  gap: 9px;
  margin-top: 16px;
  padding: 14px;
  border-radius: 16px;
  background: #f1f8f5;
  color: #008060;
  font-size: 14px;
  font-weight: 700;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #008060;
}

.problemSection,
.reliabilitySection,
.exampleSection,
.ctaSection {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 42px;
  align-items: center;
  padding: 64px 0;
}

.problemSection h2,
.exampleSection h2,
.reliabilitySection h2,
.ctaSection h2,
.sectionHeader h2 {
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 1;
}

.problemSection p,
.exampleSection p,
.reliabilitySection p,
.ctaSection p,
.sectionHeader p {
  color: #4b5563;
  font-size: 17px;
  line-height: 1.65;
}

.painGrid {
  grid-template-columns: repeat(4, 1fr);
  padding-bottom: 46px;
}

.painGrid div {
  min-height: 112px;
  padding: 20px;
  border: 1px solid #e5e7eb;
  border-radius: 22px;
  background: #ffffff;
  color: #202223;
  font-weight: 760;
  box-shadow: 0 14px 40px rgba(17, 24, 39, 0.05);
}

.section,
.useCasesSection,
.pricingSection {
  padding: 74px 0;
}

.sectionHeader {
  max-width: 760px;
  margin-bottom: 28px;
}

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

.steps article,
.featureCard,
.faqList article {
  border: 1px solid #e5e7eb;
  border-radius: 22px;
  background: #ffffff;
  padding: 22px;
}

.steps span {
  color: #008060;
  font-size: 13px;
  font-weight: 850;
}

.steps h3,
.featureCard h3,
.faqList h3,
.pricingGrid h3,
.exampleCard h3 {
  margin: 10px 0 8px;
  color: #111827;
  letter-spacing: -0.04em;
}

.steps p,
.featureCard p,
.faqList p,
.pricingGrid p,
.exampleCard p {
  margin: 0;
  color: #616161;
  line-height: 1.55;
}

.exampleSection {
  padding: 78px 42px;
  border-radius: 32px;
  background: #111827;
}

.exampleSection h2,
.exampleSection p:not(.eyebrow) {
  color: #ffffff;
}

.exampleSection p:not(.eyebrow) {
  opacity: 0.78;
}

.exampleCard {
  padding: 28px;
  border-radius: 24px;
}

.exampleCard h3 {
  margin-top: 0;
  font-size: 30px;
}

.progressTrack {
  height: 12px;
  margin: 22px 0 12px;
  overflow: hidden;
  border-radius: 999px;
  background: #e5e7eb;
}

.progressTrack span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: #d97706;
}

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

.featureCard {
  min-height: 178px;
}

.useCaseGrid {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.useCaseGrid span {
  padding: 12px 16px;
  background: #ffffff;
}

.reliabilitySection {
  border-top: 1px solid #e5e7eb;
  border-bottom: 1px solid #e5e7eb;
}

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

.pricingGrid article {
  padding: 24px;
  border-radius: 24px;
}

.pricingGrid strong {
  display: block;
  margin: 8px 0 10px;
  color: #008060;
  font-size: 34px;
  letter-spacing: -0.05em;
}

.featuredPlan {
  outline: 2px solid rgba(0, 128, 96, 0.28);
}

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

.ctaSection {
  margin-bottom: 72px;
  padding: 36px;
  border-radius: 32px;
}

.installForm {
  display: grid;
  gap: 12px;
}

.installForm label {
  display: grid;
  gap: 8px;
  color: #202223;
  font-size: 14px;
  font-weight: 750;
}

.installForm input {
  min-height: 48px;
  min-width: min(360px, 100%);
  padding: 10px 14px;
  border: 1px solid #d4d4d4;
  border-radius: 14px;
  background: #ffffff;
}

.installForm button {
  width: fit-content;
  border: 0;
  cursor: pointer;
}

@media (max-width: 920px) {
  .navLinks {
    display: none;
  }

  .hero,
  .problemSection,
  .exampleSection,
  .reliabilitySection,
  .ctaSection {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 52px;
  }

  .steps,
  .painGrid,
  .featureGrid,
  .pricingGrid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .navCta {
    display: none;
  }

  .hero,
  .section,
  .useCasesSection,
  .pricingSection,
  .problemSection,
  .reliabilitySection {
    padding: 44px 0;
  }

  .heroCopy h1 {
    font-size: clamp(3rem, 17vw, 4.4rem);
  }

  .heroMockup,
  .exampleSection,
  .ctaSection {
    border-radius: 24px;
    padding: 20px;
  }

  .metricGrid,
  .steps,
  .painGrid,
  .featureGrid,
  .pricingGrid,
  .faqList {
    grid-template-columns: 1fr;
  }

  .componentItem,
  .componentItemCritical {
    grid-template-columns: auto 1fr;
  }

  .componentItem b,
  .componentItemCritical b {
    grid-column: 2;
  }

  .installForm input {
    min-width: 0;
    width: 100%;
  }
}
