:root {
  color-scheme: light;
  --bg: #f4f6f3;
  --ink: #10201d;
  --muted: #5c6b66;
  --line: #d9e1dc;
  --surface: #ffffff;
  --surface-soft: #eef4f0;
  --green: #17695c;
  --green-dark: #0f3c35;
  --blue: #255f9f;
  --orange: #d87418;
  --shadow: 0 18px 44px rgba(16, 32, 29, 0.11);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  overflow-x: hidden;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px clamp(16px, 4vw, 48px);
  background: rgba(244, 246, 243, 0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--green-dark);
  font-weight: 900;
  text-decoration: none;
}

.brand img {
  border-radius: 8px;
  border: 1px solid var(--line);
  background: white;
}

nav {
  display: flex;
  align-items: center;
  gap: 18px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 750;
}

nav a {
  text-decoration: none;
}

.nav-cta {
  color: var(--green-dark);
}

.hero {
  min-height: 78vh;
  display: flex;
  align-items: center;
  padding: clamp(46px, 8vw, 92px) clamp(16px, 6vw, 78px);
  background:
    linear-gradient(110deg, rgba(15, 60, 53, 0.9), rgba(23, 105, 92, 0.76)),
    url("/app/baucapo-logo.png") center right 8% / min(46vw, 520px) no-repeat;
  color: #fff;
}

.hero-inner {
  width: min(760px, 100%);
}

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

.hero .eyebrow {
  color: #ffd29a;
}

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

h1 {
  margin: 0;
  max-width: 740px;
  font-size: 64px;
  line-height: 0.98;
  overflow-wrap: anywhere;
}

h2 {
  margin: 0;
  font-size: 40px;
  line-height: 1.04;
}

h3 {
  margin: 0 0 10px;
  font-size: 21px;
}

.hero-copy {
  max-width: 620px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 20px;
  line-height: 1.45;
}

.hero-actions,
.proof-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.primary,
.secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border-radius: 8px;
  padding: 12px 16px;
  font-weight: 850;
  text-decoration: none;
}

.primary {
  background: var(--orange);
  color: #fff;
}

.secondary {
  border: 1px solid rgba(255, 255, 255, 0.45);
  color: #fff;
}

.proof-strip span {
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 8px;
  padding: 8px 10px;
  color: rgba(255, 255, 255, 0.86);
  background: rgba(255, 255, 255, 0.1);
  font-size: 13px;
  font-weight: 750;
}

.demo-band,
.pricing-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
  gap: clamp(22px, 5vw, 54px);
  align-items: center;
  padding: clamp(42px, 7vw, 82px) clamp(16px, 6vw, 78px);
}

.section-copy p,
.pricing-band p {
  max-width: 620px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.55;
}

.product-preview,
.price-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--shadow);
  padding: 22px;
}

.preview-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}

.preview-head span {
  color: var(--muted);
  font-size: 14px;
}

dl {
  display: grid;
  gap: 10px;
  margin: 18px 0;
}

dl div {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  color: var(--muted);
}

dl .total {
  border-top: 1px solid var(--line);
  padding-top: 12px;
  color: var(--ink);
  font-size: 22px;
  font-weight: 900;
}

.product-preview p {
  margin: 0;
  color: var(--muted);
  line-height: 1.45;
}

.benefits {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  padding: 0 clamp(16px, 6vw, 78px);
  background: var(--line);
}

.benefits article {
  min-height: 210px;
  padding: 28px;
  background: var(--surface);
}

.benefits p,
.faq p {
  color: var(--muted);
  line-height: 1.55;
}

.price-panel .plan {
  display: inline-flex;
  margin-bottom: 12px;
  border-radius: 8px;
  padding: 6px 10px;
  color: var(--green-dark);
  background: var(--surface-soft);
  font-size: 13px;
  font-weight: 850;
}

.price-panel strong {
  display: block;
  font-size: 32px;
  line-height: 1;
}

.price-panel .primary {
  margin-top: 8px;
}

.faq {
  width: min(900px, calc(100% - 32px));
  margin: 0 auto;
  padding: clamp(42px, 7vw, 78px) 0;
}

details {
  border-top: 1px solid var(--line);
  padding: 18px 0;
}

summary {
  cursor: pointer;
  font-size: 18px;
  font-weight: 850;
}

footer {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  padding: 26px 16px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 14px;
}

footer span {
  color: var(--green-dark);
  font-weight: 900;
}

@media (max-width: 820px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
  }

  nav {
    width: 100%;
    max-width: 100%;
    overflow-x: auto;
    padding-bottom: 2px;
  }

  .hero {
    min-height: 72vh;
    background:
      linear-gradient(120deg, rgba(15, 60, 53, 0.94), rgba(23, 105, 92, 0.84)),
      url("/app/baucapo-logo.png") bottom 24px right 18px / 180px no-repeat;
  }

  h1 {
    font-size: 34px;
    line-height: 1.04;
  }

  h2 {
    font-size: 28px;
  }

  .demo-band,
  .pricing-band,
  .benefits {
    grid-template-columns: 1fr;
  }

  .benefits {
    gap: 0;
  }
}
