:root {
  --bg: #f7f3ec;
  --bg-soft: #fffaf2;
  --text: #17201d;
  --muted: #65716b;
  --primary: #176b5d;
  --primary-dark: #0f4d43;
  --accent: #f2a35e;
  --accent-soft: #ffe2bf;
  --card: rgba(255, 255, 255, 0.76);
  --border: rgba(23, 32, 29, 0.1);
  --shadow: 0 24px 80px rgba(33, 44, 39, 0.12);
  font-family: "Heebo", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  background:
    radial-gradient(circle at 12% 10%, rgba(242, 163, 94, 0.3), transparent 30%),
    radial-gradient(circle at 88% 20%, rgba(23, 107, 93, 0.18), transparent 32%),
    linear-gradient(135deg, var(--bg), #eef5ed 72%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image: linear-gradient(rgba(23, 32, 29, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(23, 32, 29, 0.03) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(to bottom, black, transparent 78%);
}

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

.page-shell {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  position: relative;
}

.site-header {
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand,
.nav-links,
.button,
.info-card,
.hero-card,
.value-section,
.cta-section {
  border: 1px solid var(--border);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
  box-shadow: 0 10px 30px rgba(23, 107, 93, 0.08);
}

.brand-mark {
  width: 34px;
  height: 34px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  color: #fff;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  font-weight: 800;
}

.brand-text {
  font-size: 1.16rem;
  font-weight: 800;
  letter-spacing: 0.01em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.55);
}

.nav-links a {
  padding: 8px 14px;
  border-radius: 999px;
  color: var(--muted);
  font-weight: 600;
  transition: 180ms ease;
}

.nav-links a:hover {
  color: var(--primary-dark);
  background: rgba(23, 107, 93, 0.08);
}

.section-grid {
  display: grid;
  grid-template-columns: 1fr 0.86fr;
  gap: clamp(28px, 6vw, 72px);
  align-items: center;
}

.hero {
  min-height: calc(100vh - 108px);
  padding: 56px 0 72px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--primary);
  font-size: 0.94rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 22px;
  font-size: clamp(3rem, 8vw, 6.3rem);
  line-height: 0.92;
  letter-spacing: -0.06em;
  max-width: 760px;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 4.6vw, 3.6rem);
  line-height: 1.02;
  letter-spacing: -0.045em;
}

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

.hero-text {
  max-width: 640px;
  color: var(--muted);
  font-size: clamp(1.08rem, 2vw, 1.28rem);
  line-height: 1.7;
}

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

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 800;
  transition: 180ms ease;
}

.button-primary {
  color: #fff;
  background: var(--primary);
  border-color: transparent;
  box-shadow: 0 14px 32px rgba(23, 107, 93, 0.24);
}

.button-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
}

.button-secondary {
  color: var(--primary-dark);
  background: rgba(255, 255, 255, 0.64);
}

.button-secondary:hover {
  background: rgba(255, 255, 255, 0.92);
  transform: translateY(-2px);
}

.hero-card {
  position: relative;
  overflow: hidden;
  min-height: 520px;
  border-radius: 42px;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.88), rgba(255, 250, 242, 0.6));
  box-shadow: var(--shadow);
}

.pet-orbit {
  position: absolute;
  inset: 28px;
  border-radius: 34px;
  background:
    radial-gradient(circle at 50% 40%, rgba(23, 107, 93, 0.12), transparent 34%),
    linear-gradient(135deg, rgba(242, 163, 94, 0.34), rgba(23, 107, 93, 0.08));
}

.paw {
  position: absolute;
  display: grid;
  place-items: center;
  width: 88px;
  height: 88px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 18px 45px rgba(23, 32, 29, 0.1);
  font-size: 2.6rem;
}

.paw-one {
  top: 12%;
  right: 12%;
  transform: rotate(-8deg);
}

.paw-two {
  top: 38%;
  left: 12%;
  transform: rotate(8deg);
}

.paw-three {
  bottom: 11%;
  right: 22%;
  transform: rotate(6deg);
}

.chat-preview {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  display: grid;
  gap: 12px;
}

.chat-bubble {
  width: fit-content;
  max-width: 82%;
  padding: 14px 16px;
  border-radius: 20px;
  font-weight: 600;
  line-height: 1.45;
  box-shadow: 0 12px 30px rgba(23, 32, 29, 0.08);
}

.chat-bubble.agent {
  justify-self: end;
  color: var(--primary-dark);
  background: #ffffff;
}

.chat-bubble.user {
  justify-self: start;
  color: #fff;
  background: var(--primary);
}

.steps-section,
.value-section,
.cta-section {
  margin: 72px 0;
}

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

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

.info-card {
  min-height: 220px;
  padding: 26px;
  border-radius: 28px;
  background: var(--card);
  box-shadow: 0 16px 50px rgba(23, 32, 29, 0.06);
}

.card-number {
  display: inline-flex;
  margin-bottom: 42px;
  color: var(--accent);
  font-weight: 800;
}

.info-card p,
.value-item p,
.cta-section p {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.65;
}

.value-section {
  padding: clamp(26px, 5vw, 52px);
  border-radius: 36px;
  background: rgba(255, 255, 255, 0.62);
}

.value-list {
  display: grid;
  gap: 14px;
}

.value-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 18px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.7);
}

.value-item span {
  flex: 0 0 auto;
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: #fff;
  background: var(--primary);
  font-weight: 800;
}

.value-item p {
  margin: 0;
}

.cta-section {
  text-align: center;
  padding: clamp(34px, 7vw, 76px);
  border-radius: 42px;
  background: linear-gradient(135deg, rgba(23, 107, 93, 0.1), rgba(242, 163, 94, 0.18));
}

.cta-section p {
  margin-bottom: 0;
}

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

  .nav-links {
    width: 100%;
    overflow-x: auto;
    justify-content: space-between;
  }

  .section-grid,
  .cards-grid {
    grid-template-columns: 1fr;
  }

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

  .hero-card {
    min-height: 430px;
    border-radius: 32px;
  }
}

@media (max-width: 560px) {
  .page-shell {
    width: min(100% - 22px, 1120px);
  }

  h1 {
    font-size: clamp(2.6rem, 17vw, 4rem);
  }

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

  .info-card {
    min-height: 190px;
  }

  .paw {
    width: 72px;
    height: 72px;
    font-size: 2.1rem;
  }
}
