:root {
  color-scheme: light;
  --bg: #f7f8f5;
  --ink: #18211e;
  --muted: #5f6e67;
  --line: #dfe5df;
  --panel: #ffffff;
  --green: #1f7a64;
  --green-dark: #155845;
  --gold: #d6b972;
  --blue: #376f9f;
  --coral: #d86f45;
  --soft-green: #eef7f1;
  --soft-gold: #fbf4e1;
  --shadow: 0 20px 60px rgba(24, 33, 30, 0.14);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

a {
  color: inherit;
}

img {
  max-width: 100%;
}

button,
input,
select,
textarea {
  font: inherit;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px clamp(18px, 5vw, 56px);
  background: rgba(247, 248, 245, 0.88);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(223, 229, 223, 0.78);
}

.brand-link,
.site-footer div {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-size: 16px;
}

.brand-link img,
.site-footer img {
  width: 38px;
  height: 34px;
  object-fit: contain;
}

.site-header nav {
  display: flex;
  align-items: center;
  gap: clamp(12px, 2vw, 24px);
  color: #35443e;
  font-weight: 700;
  font-size: 14px;
}

.site-header nav a,
.text-link {
  text-decoration: none;
}

.site-header nav a:hover,
.text-link:hover {
  color: var(--green);
}

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border-radius: 8px;
  padding: 0 18px;
  text-decoration: none;
  font-weight: 850;
  border: 1px solid transparent;
  transition: transform 140ms ease, box-shadow 140ms ease, background 140ms ease;
}

.header-cta,
.button.primary {
  background: var(--green);
  color: white;
  box-shadow: 0 12px 28px rgba(31, 122, 100, 0.18);
}

.button.secondary {
  background: rgba(255, 255, 255, 0.9);
  color: var(--ink);
  border-color: rgba(255, 255, 255, 0.44);
}

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

.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  padding: 108px clamp(18px, 6vw, 72px) 78px;
  color: white;
  background:
    linear-gradient(90deg, rgba(24, 33, 30, 0.92), rgba(24, 33, 30, 0.70) 45%, rgba(24, 33, 30, 0.25)),
    url("assets/pursuitos-dashboard-preview.jpg") center right / cover no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(24, 33, 30, 0.1), rgba(24, 33, 30, 0.32));
}

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

.eyebrow {
  margin: 0 0 10px;
  color: var(--green);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 12px;
  font-weight: 900;
}

.hero .eyebrow {
  color: var(--gold);
}

h1,
h2,
h3,
p {
  letter-spacing: 0;
}

h1,
h2,
h3 {
  margin: 0;
}

h1 {
  font-size: clamp(44px, 8vw, 84px);
  line-height: 0.95;
  max-width: 820px;
}

h2 {
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1.03;
}

h3 {
  font-size: 20px;
}

p {
  line-height: 1.58;
}

.hero-copy {
  max-width: 690px;
  margin: 22px 0 0;
  font-size: clamp(18px, 2.2vw, 23px);
  color: rgba(255, 255, 255, 0.9);
}

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

.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.trust-strip span {
  padding: 8px 11px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.92);
  font-weight: 800;
  font-size: 13px;
}

.section {
  padding: clamp(62px, 8vw, 108px) clamp(18px, 6vw, 72px);
}

.section-inner {
  width: min(1160px, 100%);
  margin: 0 auto;
}

.two-column {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.82fr);
  gap: clamp(28px, 6vw, 72px);
  align-items: start;
}

.lead {
  max-width: 820px;
  color: #34443d;
  font-size: 18px;
}

.problem {
  background: white;
}

.problem p,
.solution p,
.pilot p,
.trust p,
.fit p,
.limitations p,
.apply p {
  color: #34443d;
}

.question-list,
.trust-list,
.install-flow,
.apply-box form {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.question-list,
.trust-list {
  padding: 24px;
}

.question-list ul,
.trust-list ul,
.check-list,
.no-list,
.price-card ul {
  margin: 14px 0 0;
  padding-left: 20px;
  line-height: 1.65;
  color: #33433d;
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 30px;
}

.benefit-grid article,
.feature-list article,
.price-card,
.faq-list details {
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 20px;
}

.benefit-grid strong {
  display: block;
  font-size: 17px;
}

.benefit-grid p,
.feature-list p,
.price-card p,
.faq-list p {
  margin: 8px 0 0;
  color: var(--muted);
}

.product-preview {
  background: #18211e;
  color: white;
}

.section-heading {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: end;
  margin-bottom: 26px;
}

.product-preview .eyebrow {
  color: var(--gold);
}

.product-preview .text-link {
  color: #dce8e1;
  font-weight: 850;
}

.product-preview img {
  display: block;
  width: 100%;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 26px 80px rgba(0, 0, 0, 0.38);
}

.inside {
  background: white;
}

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

.pilot {
  background: var(--soft-green);
}

.install-flow {
  margin: 0;
  padding: 24px 24px 24px 44px;
  line-height: 1.7;
}

code {
  padding: 2px 5px;
  border-radius: 6px;
  background: rgba(55, 111, 159, 0.1);
  color: #244f75;
  font-size: 0.92em;
}

.trust {
  background: #fff;
}

.pricing {
  background: #f7f8f5;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 28px;
}

.price-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.price-card.featured {
  border-color: rgba(31, 122, 100, 0.45);
  box-shadow: 0 22px 70px rgba(31, 122, 100, 0.15);
}

.plan {
  margin: 0;
  color: var(--green);
  text-transform: uppercase;
  font-weight: 900;
  font-size: 12px;
  letter-spacing: 0.08em;
}

.price-card h3 {
  font-size: 44px;
}

.price-card .button {
  margin-top: auto;
}

.fit {
  background: white;
}

.limitations {
  background: var(--soft-gold);
}

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

.limit-grid span {
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(214, 185, 114, 0.48);
  border-radius: 8px;
  padding: 12px;
  font-weight: 800;
}

.faq {
  background: white;
}

.faq-list {
  display: grid;
  gap: 10px;
  margin-top: 26px;
}

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

.apply {
  background: #18211e;
  color: white;
}

.apply .eyebrow {
  color: var(--gold);
}

.apply p {
  color: rgba(255, 255, 255, 0.84);
}

.apply-box {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.7fr);
  gap: clamp(28px, 6vw, 70px);
  align-items: start;
}

form {
  display: grid;
  gap: 14px;
  padding: 22px;
}

label {
  display: grid;
  gap: 7px;
  color: #22312b;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  min-height: 42px;
  padding: 10px 12px;
  background: white;
  color: var(--ink);
}

textarea {
  min-height: 110px;
  resize: vertical;
}

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

.form-status {
  min-height: 20px;
  margin: 0;
  color: var(--green) !important;
  font-weight: 850;
}

button:disabled,
.button:disabled {
  cursor: wait;
  opacity: 0.72;
}

.hidden-field {
  display: none;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 28px clamp(18px, 6vw, 72px);
  background: #f0f3ef;
  color: #34433d;
}

.site-footer p {
  margin: 0;
  color: var(--muted);
}

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

  .hero {
    min-height: 84vh;
    background:
      linear-gradient(90deg, rgba(24, 33, 30, 0.94), rgba(24, 33, 30, 0.76)),
      url("assets/pursuitos-dashboard-preview.jpg") center / cover no-repeat;
  }

  .two-column,
  .apply-box,
  .benefit-grid,
  .feature-list,
  .pricing-grid,
  .limit-grid {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 560px) {
  .site-header {
    padding: 12px 14px;
  }

  .brand-link span {
    font-size: 14px;
  }

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

  .hero {
    padding: 94px 18px 54px;
  }

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

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