/* ==========================================================================
   Petdistrict landing — self-hosted fonts (no third-party CDN)
   ========================================================================== */
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("assets/fonts/inter-v20-latin-ext-400.woff2") format("woff2");
}
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("assets/fonts/inter-v20-latin-ext-500.woff2") format("woff2");
}
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("assets/fonts/inter-v20-latin-ext-600.woff2") format("woff2");
}
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("assets/fonts/inter-v20-latin-ext-700.woff2") format("woff2");
}
@font-face {
  font-family: "Nunito";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("assets/fonts/nunito-v32-latin-ext-600.woff2") format("woff2");
}
@font-face {
  font-family: "Nunito";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("assets/fonts/nunito-v32-latin-ext-700.woff2") format("woff2");
}
@font-face {
  font-family: "Nunito";
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url("assets/fonts/nunito-v32-latin-ext-800.woff2") format("woff2");
}
@font-face {
  font-family: "Nunito";
  font-style: normal;
  font-weight: 900;
  font-display: swap;
  src: url("assets/fonts/nunito-v32-latin-ext-900.woff2") format("woff2");
}

/* ==========================================================================
   Petdistrict landing — design tokens
   ========================================================================== */
:root {
  /* brand */
  --olive: #556b2f;
  --olive-700: #3f5121;
  --olive-600: #4a5d29;
  --olive-500: #6f8b3f;
  --olive-100: #e7ebd8;
  --olive-50: #f1f4e7;

  /* warm neutrals */
  --cream: #faf8f2;
  --cream-200: #f2ede2;
  --cream-300: #e8e2d5;
  --tan: #c9a574;
  --tan-soft: #f3e7d2;

  /* semantic accents (matching app chips) */
  --pink: #f7b5c2;
  --pink-bg: #fde3e9;
  --purple: #b9a7e0;
  --purple-bg: #ece4f9;
  --red: #e98b8b;
  --red-bg: #fbe1e1;
  --orange: #e7a063;
  --orange-bg: #fbe7d4;
  --sky: #6ea7e4;
  --sky-bg: #dde9f7;

  /* ink */
  --ink: #1f2a14;
  --ink-2: #3a4429;
  --ink-3: #5c6651;
  --ink-4: #8a8f80;
  --line: #e5e1d3;

  /* surface */
  --bg: var(--cream);
  --surface: #ffffff;

  /* type */
  --font-display: "Nunito", system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-body: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;

  /* radius / shadow / motion */
  --r-sm: 10px;
  --r-md: 14px;
  --r-lg: 22px;
  --r-xl: 32px;
  --r-pill: 999px;
  --shadow-sm: 0 1px 2px rgba(31, 42, 20, 0.05), 0 1px 3px rgba(31, 42, 20, 0.06);
  --shadow-md: 0 8px 24px rgba(31, 42, 20, 0.08);
  --shadow-lg: 0 24px 60px rgba(31, 42, 20, 0.14);
  --ease: cubic-bezier(0.2, 0.8, 0.2, 1);
}

/* ==========================================================================
   Reset
   ========================================================================== */
*,
*::before,
*::after {
  box-sizing: border-box;
}
* {
  margin: 0;
}
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    transition-duration: 0.001ms !important;
  }
}
body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
}
img,
svg {
  display: block;
  max-width: 100%;
  height: auto;
}
button {
  font: inherit;
  color: inherit;
  background: none;
  border: 0;
  cursor: pointer;
}
a {
  color: inherit;
  text-decoration: none;
}
:focus-visible {
  outline: 3px solid var(--olive);
  outline-offset: 2px;
  border-radius: 4px;
}

/* scroll offset for sticky header */
[id] {
  scroll-margin-top: 100px;
}

/* ==========================================================================
   Layout primitives
   ========================================================================== */
.container {
  width: 100%;
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: 24px;
}
@media (min-width: 768px) {
  .container {
    padding-inline: 40px;
  }
}
.section {
  padding-block: 88px;
}
@media (min-width: 768px) {
  .section {
    padding-block: 120px;
  }
}
.section--alt {
  background: var(--cream-200);
}
.section__head {
  max-width: 760px;
  margin-bottom: 56px;
}
.section__head--center {
  margin-inline: auto;
  text-align: center;
}
.section__head h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 12px;
}
.section__lede {
  font-size: clamp(16px, 1.4vw, 18px);
  color: var(--ink-3);
  max-width: 640px;
}
.section__head--center .section__lede {
  margin-inline: auto;
}

.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--olive);
  background: var(--olive-50);
  padding: 6px 12px;
  border-radius: var(--r-pill);
  margin-bottom: 16px;
}
.eyebrow--light {
  color: var(--cream);
  background: rgba(255, 255, 255, 0.16);
}

/* ==========================================================================
   Buttons & badges
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  padding: 12px 20px;
  border-radius: var(--r-pill);
  transition:
    transform 150ms var(--ease),
    background-color 150ms var(--ease),
    box-shadow 150ms var(--ease);
  white-space: nowrap;
}
.btn--sm {
  padding: 10px 16px;
  font-size: 14px;
}
.btn--primary {
  background: var(--olive);
  color: #fff;
  box-shadow: var(--shadow-sm);
}
.btn--primary:hover {
  background: var(--olive-700);
  box-shadow: var(--shadow-md);
  transform: translateY(-1px);
}
.btn--primary:active {
  transform: translateY(0);
}
.btn--accent {
  background: var(--tan);
  color: var(--ink);
  padding: 14px 26px;
  font-size: 15px;
}
.btn--accent:hover {
  background: #b88f5a;
  transform: translateY(-1px);
}

.store-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--ink);
  color: #fff;
  padding: 10px 18px;
  border-radius: var(--r-md);
  transition:
    transform 150ms var(--ease),
    background-color 150ms var(--ease);
}
.store-badge:hover {
  background: #000;
  transform: translateY(-1px);
}
.store-badge span {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
  text-align: left;
}
.store-badge small {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.02em;
  opacity: 0.85;
}
.store-badge strong {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: var(--r-pill);
  background: var(--olive-50);
  color: var(--olive-700);
  white-space: nowrap;
}
.chip--pink {
  background: var(--pink-bg);
  color: #b03a4d;
}
.chip--purple {
  background: var(--purple-bg);
  color: #5d4ba0;
}
.chip--red {
  background: var(--red-bg);
  color: #a33b3b;
}
.chip--accent {
  background: var(--tan-soft);
  color: #8a6638;
}

.badge {
  font-size: 12px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: var(--r-pill);
}
.badge--open {
  background: var(--olive-50);
  color: var(--olive-700);
}

.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

/* ==========================================================================
   Nav
   ========================================================================== */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250, 248, 242, 0.85);
  backdrop-filter: saturate(180%) blur(12px);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  transition: box-shadow 200ms var(--ease), background-color 200ms var(--ease);
}
.nav.is-scrolled {
  box-shadow: 0 1px 0 var(--line), 0 6px 20px rgba(31, 42, 20, 0.04);
  background: rgba(250, 248, 242, 0.95);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: 72px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.brand__mark {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  box-shadow: 0 0 0 1px var(--olive);
}
.brand__name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 20px;
  color: var(--olive);
  letter-spacing: -0.01em;
}
.brand__name strong {
  font-weight: 800;
  color: var(--olive-700);
}
.nav__links {
  display: none;
  gap: 32px;
  font-weight: 500;
  color: var(--ink-2);
}
.nav__links a {
  position: relative;
  padding: 6px 2px;
  transition: color 150ms var(--ease);
}
.nav__links a:hover {
  color: var(--olive);
}
.nav__links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  height: 2px;
  background: var(--olive);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 200ms var(--ease);
}
.nav__links a:hover::after {
  transform: scaleX(1);
}
@media (min-width: 960px) {
  .nav__links {
    display: flex;
  }
}

.nav__toggle {
  display: inline-flex;
  flex-direction: column;
  gap: 4px;
  padding: 10px;
  border-radius: var(--r-sm);
}
.nav__toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 200ms var(--ease), opacity 200ms var(--ease);
}
@media (min-width: 960px) {
  .nav__toggle {
    display: none;
  }
}

/* mobile menu */
@media (max-width: 959px) {
  .nav__links {
    position: absolute;
    inset: 72px 0 auto 0;
    background: var(--surface);
    border-bottom: 1px solid var(--line);
    flex-direction: column;
    gap: 0;
    padding: 8px 0;
    box-shadow: var(--shadow-md);
    display: none;
  }
  .nav__links.is-open {
    display: flex;
  }
  .nav__links a {
    padding: 14px 24px;
    border-bottom: 1px solid var(--line);
  }
  .nav__links a:last-child {
    border-bottom: 0;
  }
  .nav__links a::after {
    display: none;
  }
}

/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
  position: relative;
  padding-top: 56px;
  padding-bottom: 80px;
  overflow: hidden;
  background:
    radial-gradient(60% 40% at 80% 0%, rgba(85, 107, 47, 0.1), transparent 60%),
    radial-gradient(50% 40% at 0% 90%, rgba(201, 165, 116, 0.18), transparent 60%),
    var(--cream);
}
@media (min-width: 768px) {
  .hero {
    padding-top: 80px;
    padding-bottom: 120px;
  }
}
.hero__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.hero__pin {
  position: absolute;
  width: 36px;
  opacity: 0.55;
  filter: drop-shadow(0 4px 12px rgba(31, 42, 20, 0.12));
  animation: floaty 7s ease-in-out infinite;
}
.hero__pin--1 {
  top: 12%;
  left: 5%;
  width: 44px;
  animation-delay: 0s;
}
.hero__pin--2 {
  top: 70%;
  left: 9%;
  width: 38px;
  animation-delay: 1s;
}
.hero__pin--3 {
  top: 22%;
  right: 5%;
  width: 32px;
  animation-delay: 2s;
  display: none;
}
.hero__pin--4 {
  top: 78%;
  right: 3%;
  width: 38px;
  animation-delay: 3s;
}
.hero__pin--5 {
  top: 50%;
  left: 2%;
  width: 30px;
  animation-delay: 1.5s;
}
.hero__pin--6 {
  top: 15%;
  right: 12%;
  width: 34px;
  opacity: 0.4;
  animation-delay: 4s;
}
.hero__pin--7 {
  top: 85%;
  left: 15%;
  width: 32px;
  opacity: 0.3;
  animation-delay: 2.5s;
}

/* decorative pins for internal sections */
.pin-deco {
  position: absolute;
  width: 28px;
  opacity: 0.25;
  pointer-events: none;
  filter: drop-shadow(0 4px 8px rgba(31, 42, 20, 0.08));
  animation: floaty-subtle 10s ease-in-out infinite;
  z-index: 1;
}

@keyframes floaty-subtle {
  0%,
  100% {
    transform: translateY(0) rotate(-1deg);
  }
  50% {
    transform: translateY(-8px) rotate(1deg);
  }
}

.section {
  position: relative; /* ensure pins are relative to section */
}
@keyframes floaty {
  0%,
  100% {
    transform: translateY(0) rotate(-2deg);
  }
  50% {
    transform: translateY(-12px) rotate(2deg);
  }
}

.hero__inner {
  position: relative;
  display: grid;
  gap: 48px;
  align-items: center;
}
@media (min-width: 960px) {
  .hero__inner {
    grid-template-columns: 1.05fr 1fr;
    gap: 64px;
  }
}

.hero__title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(36px, 6vw, 64px);
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: var(--ink);
  margin-bottom: 20px;
}
.hero__title--accent {
  color: var(--olive);
  font-style: italic;
  background: linear-gradient(120deg, var(--olive) 0%, #6b8a3a 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero__sub {
  font-size: clamp(16px, 1.6vw, 19px);
  color: var(--ink-3);
  max-width: 540px;
  margin-bottom: 32px;
}
.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 16px;
}
.hero__note {
  font-size: 13px;
  color: var(--ink-4);
  font-weight: 500;
}

/* hero art */
.hero__art {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: clamp(420px, 70vw, 600px);
}
@media (min-width: 960px) {
  .hero__art {
    min-height: 540px;
  }
}
.hero__chip {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  border-radius: var(--r-md);
  padding: 12px 16px;
  box-shadow: var(--shadow-md);
  font-size: 13px;
  z-index: 2;
}
.hero__chip img {
  width: 32px;
  height: 32px;
}
.hero__chip strong {
  display: block;
  font-family: var(--font-display);
  font-weight: 800;
  color: var(--ink);
  font-size: 15px;
  line-height: 1.1;
}
.hero__chip span {
  color: var(--ink-3);
  font-size: 12px;
}
.hero__chip--1 {
  top: 10%;
  left: -4%;
  animation: floaty 6s ease-in-out infinite;
}
.hero__chip--2 {
  bottom: 12%;
  right: -4%;
  animation: floaty 7s ease-in-out 1s infinite;
}
@media (max-width: 540px) {
  .hero__chip--1 {
    left: 0;
  }
  .hero__chip--2 {
    right: 0;
  }
  .hero__chip strong {
    font-size: 13px;
  }
}

/* ==========================================================================
   Phone mockup
   ========================================================================== */
.phone {
  position: relative;
  width: min(280px, 100%);
  aspect-ratio: 9 / 19.5;
  background: #1f2a14;
  border-radius: 42px;
  padding: 10px;
  box-shadow:
    0 0 0 1px rgba(0, 0, 0, 0.25),
    0 30px 60px rgba(31, 42, 20, 0.22),
    0 14px 24px rgba(31, 42, 20, 0.18);
}
.phone--lg {
  width: min(320px, 100%);
  border-radius: 48px;
}
@media (min-width: 1024px) {
  .phone--lg {
    width: min(360px, 100%);
  }
}
.phone--tilt {
  transform: rotate(-2.5deg);
}
.phone__notch {
  position: absolute;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  width: 90px;
  height: 22px;
  background: #000;
  border-radius: var(--r-pill);
  z-index: 2;
}
.phone__screen {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 34px;
  overflow: hidden;
  background: var(--cream-200);
}
.phone--lg .phone__screen {
  border-radius: 40px;
}
.phone__screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

/* ==========================================================================
   Features
   ========================================================================== */
.features__grid {
  display: grid;
  gap: 20px;
  grid-template-columns: 1fr;
}
@media (min-width: 720px) {
  .features__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.feature {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 28px;
  transition: transform 200ms var(--ease), box-shadow 200ms var(--ease), border-color 200ms var(--ease);
}
.feature:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--olive-100);
}
.feature h3 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 20px;
  color: var(--ink);
  margin: 18px 0 8px;
}
.feature p {
  color: var(--ink-3);
  font-size: 15px;
}
.feature--lg {
  background: linear-gradient(135deg, var(--olive-50) 0%, #fff 100%);
  border-color: var(--olive-100);
}

.feature__icon {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--olive);
}
.feature__icon img {
  width: 80%;
  height: 80%;
  object-fit: contain;
}
.feature__icon--green {
  background: var(--olive-50);
}
.feature__icon--cream {
  background: var(--cream-200);
  width: auto;
  padding: 16px;
  border-radius: var(--r-md);
}
.feature__icon--tan {
  background: var(--tan-soft);
  color: #8a6638;
}
.feature__pins {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.feature__pins img {
  width: 44px;
  height: 44px;
  filter: drop-shadow(0 4px 8px rgba(31, 42, 20, 0.1));
}

/* ==========================================================================
   PetBot section
   ========================================================================== */
.petbot {
  background:
    radial-gradient(40% 30% at 90% 10%, rgba(85, 107, 47, 0.08), transparent 60%),
    radial-gradient(35% 30% at 0% 90%, rgba(201, 165, 116, 0.14), transparent 60%),
    var(--cream);
  overflow: hidden;
}
.petbot__inner {
  display: grid;
  gap: 56px;
  align-items: center;
}
@media (min-width: 960px) {
  .petbot__inner {
    grid-template-columns: 1fr 1fr;
    gap: 80px;
  }
}
.petbot__copy h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 18px;
}
.petbot__lede {
  font-size: 17px;
  color: var(--ink-3);
  margin-bottom: 32px;
  max-width: 520px;
}
.petbot__list {
  list-style: none;
  padding: 0;
  display: grid;
  gap: 16px;
}
.petbot__list li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 14px 18px;
  transition: border-color 150ms var(--ease), transform 150ms var(--ease);
}
.petbot__list li:hover {
  border-color: var(--olive-100);
  transform: translateX(4px);
}
.petbot__bullet {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--olive-50);
  color: var(--olive);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}
.petbot__list li > div {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}
.petbot__list strong {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--ink);
  font-size: 15px;
}
.petbot__list span {
  color: var(--ink-3);
  font-size: 14px;
  font-style: italic;
}

.petbot__art {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: clamp(420px, 70vw, 600px);
}
@media (min-width: 960px) {
  .petbot__art {
    min-height: 540px;
  }
}
.petbot__bubble {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-pill);
  padding: 10px 18px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 14px;
  color: var(--ink);
  box-shadow: var(--shadow-md);
  z-index: 2;
}
.petbot__bubble img {
  width: 28px;
  height: 28px;
}
.petbot__bubble--1 {
  top: 8%;
  left: -2%;
  background: var(--olive);
  color: #fff;
  border-color: var(--olive);
  animation: floaty 6s ease-in-out infinite;
}
.petbot__bubble--2 {
  bottom: 14%;
  right: -2%;
  animation: floaty 7s ease-in-out 1s infinite;
}
@media (max-width: 540px) {
  .petbot__bubble--1 {
    left: 0;
  }
  .petbot__bubble--2 {
    right: 0;
  }
}

/* ==========================================================================
   Preview row
   ========================================================================== */
.preview__row {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: center;
  gap: 32px;
}
.preview__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  max-width: 280px;
  text-align: center;
}
.preview__item--center {
  max-width: 360px;
}
.preview__item .phone {
  transform: translateY(20px);
}
.preview__item--center .phone {
  transform: translateY(0);
}
@media (max-width: 720px) {
  .preview__item .phone {
    transform: none;
    width: min(240px, 100%);
  }
  .preview__item--center .phone {
    width: min(280px, 100%);
  }
}
.preview__item figcaption strong {
  display: block;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 18px;
  color: var(--ink);
  margin-bottom: 4px;
}
.preview__item figcaption span {
  color: var(--ink-3);
  font-size: 14px;
}

/* ==========================================================================
   Business
   ========================================================================== */
.business {
  background: linear-gradient(135deg, var(--olive-700) 0%, var(--olive) 60%, #6b8b3f 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.business::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(40% 50% at 100% 50%, rgba(201, 165, 116, 0.18), transparent 70%);
  pointer-events: none;
}
.business__inner {
  display: grid;
  gap: 48px;
  align-items: center;
  position: relative;
}
@media (min-width: 960px) {
  .business__inner {
    grid-template-columns: 1.1fr 1fr;
    gap: 80px;
  }
}
.business__copy h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: #fff;
  margin-bottom: 18px;
}
.business__lede {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.82);
  margin-bottom: 28px;
  max-width: 540px;
}
.business__lede strong {
  color: #fff;
  font-weight: 700;
}
.business__list {
  list-style: none;
  padding: 0;
  display: grid;
  gap: 14px;
  margin-bottom: 36px;
}
.business__list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  color: rgba(255, 255, 255, 0.92);
  font-weight: 500;
}
.business__list li svg {
  color: var(--tan);
  flex-shrink: 0;
  margin-top: 2px;
}
.business__art {
  display: grid;
  gap: 16px;
  position: relative;
}
.business__card {
  background: #fff;
  color: var(--ink);
  border-radius: var(--r-lg);
  padding: 20px;
  box-shadow: var(--shadow-lg);
  transform: rotate(-1.5deg);
}
.business__card--shift {
  transform: rotate(2deg) translateX(20px);
  margin-left: auto;
  width: 88%;
}
.business__card-row {
  display: flex;
  align-items: center;
  gap: 12px;
}
.business__card-row img {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
}
.business__card-row > div {
  flex: 1;
  min-width: 0;
}
.business__card-row strong {
  display: block;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 16px;
}
.business__card-row .muted {
  display: block;
  font-size: 13px;
  color: var(--ink-4);
}
.business__offer {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px dashed var(--line);
  display: flex;
  align-items: center;
  gap: 10px;
}
.business__offer p {
  font-size: 14px;
  color: var(--ink-2);
  font-weight: 500;
}

/* ==========================================================================
   Steps
   ========================================================================== */
.steps__grid {
  display: grid;
  gap: 24px;
  grid-template-columns: 1fr;
  position: relative;
  z-index: 1;
}
@media (min-width: 720px) {
  .steps__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.step {
  background: var(--surface);
  border-radius: var(--r-lg);
  padding: 32px;
  border: 1px solid var(--line);
  position: relative;
}
.step__num {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--olive);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 20px;
  margin-bottom: 18px;
  box-shadow: 0 0 0 6px var(--olive-50);
}
.step h3 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 20px;
  margin-bottom: 8px;
}
.step p {
  color: var(--ink-3);
  font-size: 15px;
}

.steps__mascot {
  display: flex;
  align-items: center;
  gap: 24px;
  justify-content: center;
  margin-top: 56px;
  flex-wrap: wrap;
}
.steps__mascot img {
  width: 140px;
  animation: floaty 4s ease-in-out infinite;
}
.steps__bubble {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 16px 22px;
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--ink);
  position: relative;
  box-shadow: var(--shadow-sm);
}
.steps__bubble span {
  display: block;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 14px;
  color: var(--ink-3);
  margin-top: 2px;
}
.steps__bubble::before {
  content: "";
  position: absolute;
  left: -10px;
  top: 50%;
  transform: translateY(-50%);
  border: 8px solid transparent;
  border-right-color: #fff;
  filter: drop-shadow(-1px 0 0 var(--line));
}

/* ==========================================================================
   FAQ
   ========================================================================== */
.faq__inner {
  display: grid;
  gap: 48px;
}
@media (min-width: 960px) {
  .faq__inner {
    grid-template-columns: 1fr 1.4fr;
    gap: 80px;
    align-items: start;
  }
  .faq .section__head {
    position: sticky;
    top: 100px;
    margin-bottom: 0;
  }
}
.faq__list {
  display: grid;
  gap: 12px;
}
.faq__item {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  overflow: hidden;
  transition: border-color 150ms var(--ease);
}
.faq__item[open] {
  border-color: var(--olive-100);
  box-shadow: var(--shadow-sm);
}
.faq__item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 17px;
  color: var(--ink);
  cursor: pointer;
  list-style: none;
}
.faq__item summary::-webkit-details-marker {
  display: none;
}
.faq__icon {
  flex-shrink: 0;
  color: var(--olive);
  transition: transform 200ms var(--ease);
}
.faq__item[open] .faq__icon {
  transform: rotate(180deg);
}
.faq__body {
  padding: 0 24px 22px;
  color: var(--ink-3);
  font-size: 15px;
  line-height: 1.65;
}

/* ==========================================================================
   Final CTA
   ========================================================================== */
.cta {
  padding-block: 80px;
  background: var(--cream-200);
}
.cta__inner {
  display: flex;
  align-items: center;
  gap: 32px;
  background: linear-gradient(135deg, #fff 0%, var(--olive-50) 100%);
  border: 1px solid var(--olive-100);
  border-radius: var(--r-xl);
  padding: 40px;
  flex-wrap: wrap;
  justify-content: center;
  text-align: center;
  box-shadow: var(--shadow-md);
}
@media (min-width: 720px) {
  .cta__inner {
    text-align: left;
    flex-wrap: nowrap;
    padding: 56px;
  }
}
.cta__mascot {
  width: 140px;
  flex-shrink: 0;
  animation: floaty 5s ease-in-out infinite;
}
.cta__copy {
  flex: 1;
}
.cta__copy h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(26px, 3.5vw, 36px);
  line-height: 1.15;
  margin-bottom: 6px;
  letter-spacing: -0.02em;
}
.cta__copy p {
  color: var(--ink-3);
  font-size: 17px;
  margin-bottom: 20px;
}
@media (max-width: 720px) {
  .cta__inner .hero__ctas {
    justify-content: center;
  }
}

/* ==========================================================================
   Footer
   ========================================================================== */
.footer {
  background: var(--ink);
  color: #d8d6cd;
  padding-top: 64px;
  padding-bottom: 24px;
}
.footer__inner {
  display: grid;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
@media (min-width: 720px) {
  .footer__inner {
    grid-template-columns: 1.2fr 2fr;
    gap: 64px;
  }
}
.footer__brand .brand__name {
  color: #fff;
}
.footer__brand .brand__name strong {
  color: var(--tan);
}
.footer__brand p {
  margin-top: 16px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  max-width: 320px;
}
.footer__cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.footer__cols h4 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #fff;
  margin-bottom: 16px;
}
.footer__cols a {
  display: block;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.7);
  padding: 4px 0;
  transition: color 150ms var(--ease);
}
.footer__cols a:hover {
  color: #fff;
}
.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: 24px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
}
.footer__made {
  font-weight: 500;
}

/* ==========================================================================
   Legal pages (privacy, terms)
   ========================================================================== */
.legal {
  padding: 120px 0 80px;
  background: var(--bg);
}
@media (min-width: 720px) {
  .legal {
    padding: 140px 0 100px;
  }
}
.legal__inner {
  max-width: 880px;
  margin: 0 auto;
}
.legal__hero {
  background: linear-gradient(135deg, var(--olive-700) 0%, var(--olive) 60%, #6b8b3f 100%);
  color: #fff;
  border-radius: var(--r-lg);
  padding: 32px 28px;
  margin-bottom: 32px;
  text-align: center;
  box-shadow: var(--shadow-md);
}
@media (min-width: 720px) {
  .legal__hero {
    padding: 44px 40px;
  }
}
.legal__hero h1 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(26px, 4vw, 36px);
  line-height: 1.2;
  letter-spacing: -0.01em;
  margin-bottom: 10px;
}
.legal__hero p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 14px;
  line-height: 1.55;
  max-width: 620px;
  margin: 0 auto;
}
.legal__hero .legal__version {
  margin-top: 12px;
  display: inline-block;
  padding: 6px 14px;
  border-radius: var(--r-pill);
  background: rgba(255, 255, 255, 0.15);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.02em;
}
.legal__card {
  background: var(--surface);
  border-radius: var(--r-lg);
  padding: 28px 24px;
  margin-bottom: 16px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--line);
}
@media (min-width: 720px) {
  .legal__card {
    padding: 36px 40px;
  }
}
.legal__card h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 20px;
  line-height: 1.3;
  color: var(--ink);
  margin-bottom: 14px;
}
.legal__card h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  line-height: 1.35;
  color: var(--olive-700);
  margin-top: 22px;
  margin-bottom: 8px;
}
.legal__card h4 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  color: var(--ink);
  margin-top: 16px;
  margin-bottom: 6px;
}
.legal__card p {
  color: var(--ink-3);
  font-size: 15px;
  line-height: 1.65;
  margin-bottom: 12px;
}
.legal__card p strong,
.legal__card li strong {
  color: var(--ink);
  font-weight: 700;
}
.legal__card a {
  color: var(--olive);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.legal__card a:hover {
  color: var(--olive-700);
}
.legal__card ul,
.legal__card ol {
  padding-left: 22px;
  margin-bottom: 14px;
}
.legal__card li {
  color: var(--ink-3);
  font-size: 15px;
  line-height: 1.65;
  margin-bottom: 6px;
}
.legal__card li::marker {
  color: var(--olive);
}
.legal__card hr {
  border: 0;
  height: 1px;
  background: var(--line);
  margin: 24px 0;
}
.legal__fields {
  display: grid;
  gap: 8px;
  background: var(--cream-200);
  border-radius: var(--r-md);
  padding: 18px 20px;
  margin-bottom: 12px;
}
.legal__fields dt {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
  color: var(--ink);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.legal__fields dd {
  color: var(--ink-3);
  font-size: 14px;
  margin: 0 0 6px 0;
}
.legal__fields dd:last-child {
  margin-bottom: 0;
}
.legal__note {
  background: rgba(85, 107, 47, 0.06);
  border-left: 3px solid var(--olive);
  border-radius: var(--r-sm);
  padding: 14px 16px;
  margin: 14px 0;
}
.legal__note p {
  font-size: 14px;
  margin-bottom: 0;
  color: var(--ink-2);
}
.legal__table-wrap {
  overflow-x: auto;
  margin: 14px 0 16px;
  border-radius: var(--r-md);
  border: 1px solid var(--line);
}
.legal__table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
  min-width: 540px;
}
.legal__table thead {
  background: var(--olive);
  color: #fff;
}
.legal__table th {
  padding: 10px 12px;
  text-align: left;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.03em;
}
.legal__table td {
  padding: 10px 12px;
  border-top: 1px solid var(--line);
  color: var(--ink-3);
  vertical-align: top;
  line-height: 1.5;
}
.legal__table tbody tr:nth-child(odd) {
  background: var(--cream-200);
}
.legal__table td:first-child {
  font-weight: 600;
  color: var(--ink);
}
.legal__footnote {
  text-align: center;
  font-size: 13px;
  color: var(--ink-4);
  margin-top: 24px;
  line-height: 1.6;
}
.legal__back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--olive);
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 24px;
  text-decoration: none;
}
.legal__back:hover {
  color: var(--olive-700);
}

/* ==========================================================================
   Mobile fine-tuning
   ========================================================================== */
@media (max-width: 640px) {
  /* Free up nav space: hide the desktop CTA, the menu drawer keeps the links */
  .nav__inner .btn--primary {
    display: none;
  }
  .nav__inner {
    gap: 12px;
  }
  .brand__name {
    font-size: 18px;
  }

  /* Tighter section rhythm */
  .section {
    padding-block: 64px;
  }
  .section__head {
    margin-bottom: 36px;
  }

  /* Hero pins: keep only a couple, smaller */
  .hero__pin {
    width: 28px !important;
  }
  .hero__pin--3,
  .hero__pin--5 {
    display: none;
  }

  /* Hero floating chips: keep inside the viewport */
  .hero__chip,
  .petbot__bubble {
    padding: 8px 12px;
    font-size: 12px;
  }
  .hero__chip img {
    width: 24px;
    height: 24px;
  }
  .hero__chip strong {
    font-size: 12px;
  }
  .hero__chip span {
    font-size: 11px;
  }

  /* Steps mascot stacks vertically — flip the bubble arrow upward */
  .steps__mascot {
    margin-top: 40px;
    gap: 16px;
  }
  .steps__mascot img {
    width: 110px;
  }
  .steps__bubble {
    text-align: center;
  }
  .steps__bubble::before {
    left: 50%;
    top: -8px;
    transform: translateX(-50%);
    border: 8px solid transparent;
    border-right-color: transparent;
    border-bottom-color: #fff;
    filter: drop-shadow(0 -1px 0 var(--line));
  }

  /* Final CTA card */
  .cta {
    padding-block: 56px;
  }
  .cta__inner {
    padding: 28px 22px;
    border-radius: var(--r-lg);
  }
  .cta__mascot {
    width: 110px;
  }

  /* Business cards keep a sane footprint without rotating off-canvas */
  .business__card {
    transform: rotate(-1deg);
    padding: 18px;
  }
  .business__card--shift {
    transform: rotate(1deg);
    width: 100%;
    margin-left: 0;
  }

  /* Footer columns: 2 cols on mobile to avoid cramped 3-col */
  .footer__cols {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
  .footer__bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  /* Legal pages: tighter top + side spacing */
  .legal {
    padding: 92px 0 56px;
  }
  .legal__hero {
    padding: 26px 20px;
  }
  .legal__hero h1 {
    font-size: 22px;
  }
  .legal__card {
    padding: 22px 18px;
  }
  .legal__card h2 {
    font-size: 18px;
  }
  .legal__card p,
  .legal__card li {
    font-size: 14.5px;
  }
  .legal__fields {
    padding: 14px 16px;
  }
  .legal__fields dt {
    font-size: 11.5px;
  }
}

@media (max-width: 380px) {
  /* Very small phones (≈ iPhone SE 1st gen, 320px viewport) */
  .container {
    padding-inline: 16px;
  }
  .hero__title {
    font-size: 32px;
  }
  .store-badge {
    flex: 1 0 auto;
  }
  .legal__card {
    padding: 20px 14px;
  }
}
