:root {
  --ink: #17211c;
  --muted: #5f6d68;
  --line: #dfe7e2;
  --paper: #fbfcfa;
  --white: #ffffff;
  --teal: #087f6b;
  --teal-dark: #056253;
  --saffron: #d89422;
  --rose: #c95045;
  --mint: #e8f4ef;
  --stone: #f2f0ea;
  --shadow: 0 24px 60px rgba(23, 33, 28, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

.site-header {
  align-items: center;
  background: rgba(251, 252, 250, 0.94);
  border-bottom: 1px solid var(--line);
  display: flex;
  gap: 24px;
  justify-content: space-between;
  padding: 18px clamp(20px, 5vw, 64px);
  position: sticky;
  top: 0;
  z-index: 10;
}

.header-actions {
  align-items: center;
  display: flex;
  gap: 10px;
}

.brand,
.nav {
  align-items: center;
  display: flex;
}

.brand {
  font-weight: 800;
  gap: 10px;
  min-width: max-content;
}

.brand-mark {
  align-items: center;
  background: var(--ink);
  border-radius: 8px;
  color: var(--white);
  display: inline-flex;
  font-size: 0.78rem;
  height: 34px;
  justify-content: center;
  width: 34px;
}

.nav {
  color: var(--muted);
  font-size: 0.92rem;
  gap: 22px;
}

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

.nav-cta,
.button {
  align-items: center;
  border-radius: 8px;
  display: inline-flex;
  font-weight: 750;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  transition:
    background 0.2s ease,
    border-color 0.2s ease,
    transform 0.2s ease;
}

.nav-cta {
  border: 1px solid var(--ink);
  font-size: 0.92rem;
}

.nav-cta.quiet {
  border-color: var(--line);
  color: var(--teal);
}

.button {
  border: 1px solid transparent;
}

.button:hover,
.nav-cta:hover {
  transform: translateY(-1px);
}

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

.primary:hover {
  background: var(--teal-dark);
}

.secondary {
  background: var(--white);
  border-color: var(--line);
}

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

.whatsapp {
  background: #22a06b;
  color: var(--white);
}

.whatsapp:hover {
  background: #17855a;
}

.hero {
  align-items: center;
  display: grid;
  gap: clamp(28px, 6vw, 72px);
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.88fr);
  min-height: calc(100vh - 72px);
  padding: clamp(42px, 7vw, 86px) clamp(20px, 5vw, 64px) clamp(34px, 5vw, 58px);
}

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

.eyebrow {
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0;
  margin: 0 0 14px;
  text-transform: uppercase;
}

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

h1 {
  font-size: clamp(3rem, 7vw, 6.5rem);
  line-height: 0.96;
  margin-bottom: 24px;
  max-width: 880px;
}

h2 {
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1.02;
  margin-bottom: 18px;
}

h3 {
  font-size: 1.16rem;
  margin-bottom: 10px;
}

.hero-lede {
  color: var(--muted);
  font-size: clamp(1.12rem, 2vw, 1.35rem);
  max-width: 660px;
}

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

.trust-note {
  color: var(--muted);
  font-size: 0.92rem;
  max-width: 620px;
}

.product-screen {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  min-height: 520px;
  overflow: hidden;
}

.screen-topbar {
  align-items: center;
  background: var(--stone);
  border-bottom: 1px solid var(--line);
  display: flex;
  gap: 8px;
  padding: 14px 16px;
}

.dot {
  border-radius: 999px;
  height: 11px;
  width: 11px;
}

.red {
  background: var(--rose);
}

.yellow {
  background: var(--saffron);
}

.green {
  background: var(--teal);
}

.screen-title {
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 800;
  margin-left: 8px;
}

.screen-grid {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(3, 1fr);
  padding: 18px;
}

.metric {
  background: var(--mint);
  border: 1px solid #c8e2d7;
  border-radius: 8px;
  min-height: 104px;
  padding: 14px;
}

.metric span {
  color: var(--muted);
  display: block;
  font-size: 0.78rem;
  font-weight: 750;
}

.metric strong {
  display: block;
  font-size: clamp(1.28rem, 2vw, 1.7rem);
  line-height: 1.1;
  margin-top: 14px;
}

.metric.attention {
  background: #fff4dd;
  border-color: #efd09a;
}

.report-preview {
  border-bottom: 1px solid var(--line);
  border-top: 1px solid var(--line);
  margin: 0 18px;
  padding: 22px 0;
}

.report-header {
  align-items: center;
  display: flex;
  justify-content: space-between;
  margin-bottom: 18px;
}

.report-header span {
  color: var(--muted);
  font-weight: 750;
}

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

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

.rows span {
  background:
    linear-gradient(90deg, var(--ink) 0 16%, #dae3de 16% var(--w), transparent var(--w));
  border-bottom: 1px solid var(--line);
  display: block;
  height: 18px;
}

.checklist {
  display: grid;
  gap: 14px;
  padding: 22px 18px 28px;
}

.checklist div {
  align-items: center;
  color: var(--muted);
  display: flex;
  font-weight: 700;
  gap: 10px;
}

.check,
.warn {
  border-radius: 999px;
  display: inline-block;
  height: 12px;
  min-width: 12px;
}

.check {
  background: var(--teal);
}

.warn {
  background: var(--saffron);
}

.band,
.split,
.pricing {
  padding: clamp(58px, 8vw, 104px) clamp(20px, 5vw, 64px);
}

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

.section-heading {
  max-width: 820px;
}

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

.deliverables article,
.price-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 22px;
}

.deliverables article {
  background: var(--paper);
}

.deliverables p,
.split p,
.price-card p,
.footer p,
.steps p {
  color: var(--muted);
}

.split {
  display: grid;
  gap: clamp(28px, 6vw, 76px);
  grid-template-columns: 0.8fr 1fr;
}

.split > div {
  max-width: 650px;
}

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

.steps li {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  display: grid;
  gap: 8px;
  grid-template-columns: 56px 1fr;
  padding: 18px;
}

.steps span {
  color: var(--saffron);
  font-weight: 900;
  grid-row: span 2;
}

.steps strong {
  font-size: 1.08rem;
}

.steps p {
  margin-bottom: 0;
}

.pricing {
  background: #eef7f3;
}

.pricing-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(2, minmax(0, 420px));
  margin-top: 32px;
}

.price-card {
  background: var(--white);
}

.price-card.accent {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--white);
}

.price-card.accent p {
  color: #cfdad5;
}

.price {
  color: var(--ink);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 900;
  line-height: 1;
  margin-bottom: 12px;
}

.accent .price {
  color: var(--white);
}

.price span {
  color: var(--muted);
  font-size: 1rem;
  font-weight: 750;
}

.price-card .button {
  margin-top: 16px;
  width: 100%;
}

.text-link {
  color: var(--teal);
  display: inline-flex;
  font-weight: 850;
  margin-top: 14px;
}

.accent .text-link {
  color: #8de4c4;
}

.footer {
  align-items: center;
  border-top: 1px solid var(--line);
  display: flex;
  gap: 20px;
  justify-content: space-between;
  padding: 26px clamp(20px, 5vw, 64px);
}

.footer p {
  margin: 0;
  max-width: 760px;
}

.footer a {
  color: var(--teal);
  font-weight: 800;
}

.footer-links {
  align-items: flex-end;
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: max-content;
}

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

  .hero {
    min-height: auto;
  }

  .product-screen {
    max-width: 720px;
  }

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

@media (max-width: 720px) {
  .site-header {
    align-items: flex-start;
    gap: 14px;
  }

  .nav {
    display: none;
  }

  .nav-cta {
    min-height: 38px;
    padding: 0 12px;
  }

  .header-actions {
    gap: 8px;
  }

  h1 {
    font-size: clamp(2.55rem, 14vw, 4rem);
  }

  .screen-grid,
  .deliverables,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .product-screen {
    min-height: 0;
  }

  .steps li {
    grid-template-columns: 44px 1fr;
  }

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

  .footer-links {
    align-items: flex-start;
  }
}
