@font-face {
  font-family: "Voffi Sans";
  src: url("/assets/manrope-variable.ttf") format("truetype");
  font-style: normal;
  font-weight: 200 800;
  font-display: swap;
}

:root {
  color-scheme: light;
  --ink: #353434;
  --ink-soft: #6b6c66;
  --cream: #f8fafb;
  --paper: #ffffff;
  --white: #ffffff;
  --blue: #a2f9ff;
  --blue-strong: #4cb7d0;
  --blue-deep: #314152;
  --blue-wash: #f2fafd;
  --yellow: #fcfc62;
  --yellow-wash: #fcfbed;
  --orange: #f2a65a;
  --orange-text: #a95c1f;
  --orange-soft: #f9dfc5;
  --orange-wash: #fcf4ec;
  --green: #b8dc74;
  --pink: #ffc3cf;
  --line: #dce4e8;
  --line-strong: #c7d1d6;
  --shadow-sm: 0 3px 12px rgba(27, 37, 43, 0.07);
  --shadow-lg: 0 24px 64px rgba(27, 37, 43, 0.13);
  --radius-sm: 12px;
  --radius-md: 18px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --content: 1180px;
  --gutter: clamp(20px, 4vw, 48px);
  --display: "Voffi Sans", "Avenir Next", Avenir, system-ui, sans-serif;
  --sans: "Voffi Sans", "Avenir Next", Avenir, system-ui, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

img,
svg {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration-thickness: 1.5px;
  text-underline-offset: 0.2em;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid var(--ink);
  outline-offset: 3px;
  box-shadow: 0 0 0 6px var(--cream) !important;
}

::selection {
  background: var(--yellow);
  color: var(--ink);
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  transform: translateY(-160%);
  padding: 11px 18px;
  border: 2px solid var(--ink);
  border-radius: 999px;
  background: var(--yellow);
  font-weight: 800;
  transition: transform 160ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  border-bottom: 1px solid transparent;
  background: rgba(253, 248, 242, 0.82);
  backdrop-filter: blur(18px) saturate(1.3);
  -webkit-backdrop-filter: blur(18px) saturate(1.3);
  transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.site-header.is-scrolled {
  border-color: var(--line);
  background: rgba(253, 248, 242, 0.94);
  box-shadow: 0 8px 28px rgba(49, 65, 82, 0.06);
}

.nav-shell {
  width: min(100%, calc(var(--content) + (var(--gutter) * 2)));
  min-height: 78px;
  margin: 0 auto;
  padding: 12px var(--gutter);
  display: flex;
  align-items: center;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 48px;
  text-decoration: none;
}

.brand-icon {
  width: 31px;
  height: 33px;
  object-fit: contain;
}

.brand-wordmark {
  width: 92px;
  height: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
  margin-left: auto;
}

.nav-link {
  position: relative;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  font-size: 0.88rem;
  font-weight: 750;
  text-decoration: none;
}

.nav-link::after {
  position: absolute;
  right: 0;
  bottom: 8px;
  left: 0;
  height: 3px;
  border-radius: 3px;
  background: var(--orange);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.nav-link:hover::after,
.nav-link[aria-current="page"]::after {
  transform: scaleX(1);
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  margin-left: auto;
  padding: 0;
  border: 2px solid var(--ink);
  border-radius: 50%;
  background: var(--paper);
  color: var(--ink);
  place-items: center;
  cursor: pointer;
}

.menu-lines,
.menu-lines::before,
.menu-lines::after {
  display: block;
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-lines {
  position: relative;
}

.menu-lines::before,
.menu-lines::after {
  position: absolute;
  left: 0;
  content: "";
}

.menu-lines::before { top: -6px; }
.menu-lines::after { top: 6px; }

.menu-toggle[aria-expanded="true"] .menu-lines {
  background: transparent;
}

.menu-toggle[aria-expanded="true"] .menu-lines::before {
  top: 0;
  transform: rotate(45deg);
}

.menu-toggle[aria-expanded="true"] .menu-lines::after {
  top: 0;
  transform: rotate(-45deg);
}

.button {
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--ink);
  color: var(--white);
  font-size: 0.92rem;
  font-weight: 800;
  line-height: 1.1;
  text-align: center;
  text-decoration: none;
  box-shadow: 0 0 0 var(--ink);
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(27, 37, 43, 0.13);
}

.button:active {
  transform: translate(0, 0);
  box-shadow: none;
}

.button--blue {
  background: var(--blue);
  color: var(--ink);
}

.button--orange {
  background: var(--orange);
  color: #17242e;
}

.button--yellow {
  background: var(--yellow);
  color: var(--ink);
}

.button--paper {
  background: var(--paper);
  color: var(--ink);
}

.button--ghost {
  border-color: var(--line-strong);
  background: transparent;
  color: var(--ink);
  box-shadow: none;
}

.button--ghost:hover {
  border-color: var(--ink);
  background: var(--paper);
}

.button[aria-disabled="true"],
.button:disabled {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.52);
  color: var(--ink-soft);
  box-shadow: none;
  cursor: default;
  transform: none;
}

.button-icon {
  width: 21px;
  height: 21px;
  flex: 0 0 auto;
}

.container {
  width: min(100%, calc(var(--content) + (var(--gutter) * 2)));
  margin: 0 auto;
  padding-inline: var(--gutter);
}

.section {
  padding-block: clamp(68px, 7vw, 108px);
}

.section--compact {
  padding-block: clamp(44px, 5vw, 68px);
}

.section--paper { background: var(--paper); }
.section--blue { background: var(--blue-wash); }
.section--yellow { background: var(--yellow-wash); }
.section--ink { background: var(--ink); color: var(--cream); }
.section--orange {
  background: var(--orange-wash);
  color: var(--ink);
}

.section--orange .lede,
.section--orange .muted {
  color: var(--ink-soft);
}

.eyebrow {
  margin: 0 0 16px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.13em;
  line-height: 1.2;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 16px;
  height: 3px;
  border-radius: 999px;
  background: var(--blue-strong);
  content: "";
}

.section--ink .eyebrow::before { background: var(--yellow); }

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

h1,
h2,
h3 {
  text-wrap: balance;
}

h1,
h2 {
  font-family: var(--display);
  font-weight: 760;
  letter-spacing: -0.04em;
  line-height: 1.02;
}

h1 {
  margin-bottom: 24px;
  font-size: clamp(3rem, 5.5vw, 5.35rem);
}

h2 {
  margin-bottom: 22px;
  font-size: clamp(2.05rem, 3.55vw, 3.45rem);
}

h3 {
  margin-bottom: 12px;
  font-size: clamp(1.25rem, 2vw, 1.65rem);
  line-height: 1.15;
}

p {
  margin-bottom: 1.15em;
}

p:last-child { margin-bottom: 0; }

.display-accent {
  position: relative;
  display: inline-block;
  color: var(--blue-deep);
  white-space: nowrap;
}

.display-accent::after {
  position: absolute;
  right: 0;
  bottom: -0.05em;
  left: 0.06em;
  height: 0.09em;
  border-radius: 100%;
  background: var(--blue-strong);
  content: "";
  transform: rotate(-1.5deg) scaleX(0.94);
}

.lede {
  max-width: 690px;
  color: var(--ink-soft);
  font-size: clamp(1.05rem, 1.65vw, 1.28rem);
  line-height: 1.55;
}

.section--ink .lede,
.section--ink .muted {
  color: rgba(253, 248, 242, 0.72);
}

.muted { color: var(--ink-soft); }
.small { font-size: 0.88rem; }

.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.hero {
  min-height: auto;
  padding-block: clamp(62px, 7vw, 92px) clamp(68px, 8vw, 104px);
  display: grid;
  align-items: center;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 0.92fr);
  align-items: center;
  gap: clamp(38px, 6vw, 92px);
}

.hero-copy {
  position: relative;
  z-index: 2;
  animation: hero-rise 700ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.hero-copy .lede { max-width: 610px; }

.hero-actions {
  margin-top: 30px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
}

.availability-note {
  margin-top: 18px;
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--ink-soft);
  font-size: 0.84rem;
  font-weight: 650;
}

.availability-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--blue-strong);
  box-shadow: 0 0 0 5px rgba(76, 183, 208, 0.13);
}

.hero-art {
  position: relative;
  min-height: 510px;
  display: grid;
  place-items: center;
  animation: art-pop 850ms 120ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.hero-art::before {
  position: absolute;
  width: min(94%, 560px);
  aspect-ratio: 1.35;
  border-radius: 34px;
  background: var(--blue-wash);
  content: "";
  transform: translate(18px, 18px);
}

.hero-image-wrap {
  position: relative;
  z-index: 1;
  width: min(100%, 590px);
  overflow: hidden;
  border: 1px solid var(--line-strong);
  border-radius: 32px;
  background: var(--paper);
  box-shadow: 0 22px 55px rgba(49, 65, 82, 0.14);
}

.hero-image {
  width: 100%;
  height: auto;
  display: block;
}

.species-ribbon {
  overflow: hidden;
  border-block: 1px solid var(--line);
  background: var(--cream);
}

.species-track {
  width: max-content;
  min-height: 58px;
  display: flex;
  align-items: center;
  gap: 30px;
  animation: marquee 48s linear infinite;
}

.species-track span {
  display: inline-flex;
  align-items: center;
  gap: 30px;
  font-family: var(--display);
  font-size: 1.02rem;
  font-weight: 750;
  white-space: nowrap;
}

.species-track span::after {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--orange-text);
  content: "";
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(40px, 8vw, 120px);
  align-items: start;
}

.intro-copy {
  position: sticky;
  top: 118px;
}

.feature-stack {
  display: grid;
  gap: 22px;
}

.feature-card {
  min-height: 215px;
  padding: clamp(24px, 3vw, 34px);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-md);
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 22px;
  background: var(--paper);
  box-shadow: 0 12px 30px rgba(49, 65, 82, 0.06);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.feature-card:nth-child(n) { background: var(--paper); transform: none; }

.feature-card:hover {
  box-shadow: 0 18px 36px rgba(49, 65, 82, 0.11);
  transform: translateY(-3px);
}

.feature-icon {
  width: 48px;
  height: 48px;
  border: 1px solid var(--line);
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: var(--blue-wash);
}

.feature-card:nth-child(2) .feature-icon { background: var(--orange-wash); }
.feature-card:nth-child(3) .feature-icon { background: var(--yellow-wash); }
.feature-card:nth-child(4) .feature-icon { background: var(--blue-wash); }

.feature-icon svg,
.category-icon svg,
.detail-symbol svg,
.support-icon svg {
  width: 24px;
  height: 24px;
}

.feature-card p { max-width: 560px; color: var(--ink-soft); }

.feature-link {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  font-weight: 850;
}

.feature-link::after {
  content: "\2192";
  transition: transform 160ms ease;
}

.feature-link:hover::after { transform: translateX(5px); }

.shared-care {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.82fr);
  gap: clamp(40px, 8vw, 110px);
  align-items: center;
}

.care-board {
  position: relative;
  min-height: 560px;
}

.care-note {
  position: absolute;
  width: min(78%, 390px);
  padding: 24px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-md);
  background: var(--paper);
  box-shadow: 0 16px 34px rgba(49, 65, 82, 0.11);
}

.care-note:nth-child(1) { top: 2%; left: 0; transform: rotate(-1.5deg); }
.care-note:nth-child(2) { top: 33%; right: 0; background: var(--paper); transform: rotate(1.5deg); }
.care-note:nth-child(3) { bottom: 2%; left: 8%; background: var(--paper); transform: none; }

.care-note-head {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-bottom: 13px;
}

.avatar {
  width: 48px;
  height: 48px;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--orange-wash);
  font-weight: 850;
}

.plan-tag {
  min-width: 52px;
  min-height: 30px;
  padding-inline: 9px;
  border: 1px solid var(--line-strong);
  border-radius: 9px;
  display: inline-grid;
  place-items: center;
  background: var(--paper);
  font-size: 0.62rem;
  font-weight: 850;
  letter-spacing: 0.08em;
}

.note-meta {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.78rem;
  font-weight: 700;
}

.check-list {
  margin: 28px 0 0;
  padding: 0;
  display: grid;
  gap: 15px;
  list-style: none;
}

.check-list li {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 12px;
}

.check-list li::before {
  width: 25px;
  height: 25px;
  border: 2px solid currentColor;
  border-radius: 50%;
  display: grid;
  place-items: center;
  content: "\2713";
  font-size: 0.7rem;
  font-weight: 900;
}

.care-categories {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.category-card {
  min-height: 230px;
  padding: 26px 22px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-md);
  display: flex;
  flex-direction: column;
  background: var(--paper);
  transition: transform 180ms ease;
}

.category-card:nth-child(n) { background: var(--paper); }
.category-card:hover { transform: translateY(-3px); }

.category-icon {
  width: 50px;
  height: 50px;
  margin-bottom: 36px;
  border: 1px solid var(--line);
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: var(--paper);
  color: var(--ink);
}

.category-card:nth-child(1) .category-icon { background: var(--blue-wash); }
.category-card:nth-child(2) .category-icon { background: var(--orange-wash); }
.category-card:nth-child(3) .category-icon { background: var(--yellow-wash); }
.category-card:nth-child(4) .category-icon { background: var(--blue-wash); }

.category-card p { margin-bottom: 0; color: var(--ink-soft); font-size: 0.92rem; }

.insight-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
  gap: clamp(42px, 8vw, 110px);
  align-items: center;
}

.phone-stage {
  position: relative;
  min-height: 620px;
  display: grid;
  place-items: center;
}

.phone-stage::before {
  position: absolute;
  width: 72%;
  height: 84%;
  border-radius: 46px;
  background: var(--orange-wash);
  content: "";
  transform: rotate(-4deg);
}

.phone {
  position: relative;
  z-index: 2;
  width: min(78%, 335px);
  aspect-ratio: 0.52;
  padding: 11px;
  border: 3px solid var(--ink);
  border-radius: 46px;
  background: var(--ink);
  box-shadow: 20px 24px 0 rgba(53, 52, 52, 0.14);
  transform: rotate(-5deg);
}

.phone-screen {
  height: 100%;
  padding: 34px 18px 18px;
  overflow: hidden;
  border-radius: 35px;
  background: var(--cream);
}

.phone-notch {
  position: absolute;
  z-index: 3;
  top: 20px;
  left: 50%;
  width: 86px;
  height: 20px;
  border-radius: 999px;
  background: var(--ink);
  transform: translateX(-50%);
}

.phone-kicker { margin: 0; font-size: 0.64rem; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase; }
.phone-title { margin: 3px 0 19px; font-family: var(--display); font-size: 1.75rem; line-height: 1; }
.phone-card { margin-bottom: 12px; padding: 15px; border: 1.5px solid var(--ink); border-radius: 19px; background: var(--paper); }
.phone-card--blue { background: var(--blue-wash); }
.phone-row { display: flex; justify-content: space-between; gap: 12px; align-items: center; }
.phone-label { margin: 0; font-size: 0.7rem; font-weight: 800; }
.phone-value { margin: 0; font-family: var(--display); font-size: 1.65rem; font-weight: 750; line-height: 1; }
.mini-bars { height: 62px; margin-top: 13px; display: flex; align-items: end; gap: 7px; }
.mini-bars span { flex: 1; border: 1.5px solid var(--ink); border-radius: 6px 6px 2px 2px; background: var(--orange); }
.mini-bars span:nth-child(1) { height: 38%; }
.mini-bars span:nth-child(2) { height: 66%; background: var(--yellow); }
.mini-bars span:nth-child(3) { height: 48%; background: var(--blue-strong); }
.mini-bars span:nth-child(4) { height: 82%; }
.mini-bars span:nth-child(5) { height: 72%; background: var(--green); }
.mini-bars span:nth-child(6) { height: 95%; background: var(--yellow); }
.phone-task { padding: 11px 0; border-bottom: 1px solid var(--line); display: grid; grid-template-columns: 28px 1fr auto; align-items: center; gap: 9px; font-size: 0.68rem; font-weight: 750; }
.phone-task:last-child { border-bottom: 0; }
.phone-check { width: 24px; height: 24px; border: 1.5px solid var(--ink); border-radius: 50%; display: grid; place-items: center; background: var(--yellow); font-size: 0.6rem; }

.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border: 2px solid var(--ink);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--paper);
}

.trust-item {
  min-height: 230px;
  padding: clamp(25px, 4vw, 42px);
  border-right: 2px solid var(--ink);
}

.trust-item:last-child { border-right: 0; }
.trust-item strong { display: block; margin-bottom: 10px; font-family: var(--display); font-size: clamp(1.45rem, 2.7vw, 2.2rem); line-height: 1.08; }
.trust-item p { margin: 0; color: var(--ink-soft); font-size: 0.92rem; }

.download-card {
  position: relative;
  overflow: hidden;
  padding: clamp(38px, 7vw, 86px);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-lg);
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 40px;
  background: var(--yellow-wash);
  box-shadow: 0 20px 48px rgba(49, 65, 82, 0.1);
}

.download-card::after {
  position: absolute;
  top: 0;
  right: 0;
  width: 10px;
  height: 100%;
  background: var(--orange);
  content: "";
}

.download-copy,
.store-stack { position: relative; z-index: 1; }
.download-copy h2 { max-width: 720px; margin-bottom: 16px; }
.store-stack { min-width: 250px; display: grid; gap: 12px; }

.page-hero {
  padding-block: clamp(56px, 7vw, 96px) clamp(48px, 6vw, 76px);
  border-bottom: 1px solid var(--line);
}

.page-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 900px);
  gap: 0;
}

.page-hero h1 {
  max-width: 880px;
  font-size: clamp(3.15rem, 6.2vw, 5.8rem);
}

.feature-detail-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.detail-card {
  min-height: 350px;
  padding: clamp(28px, 4vw, 44px);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-md);
  display: flex;
  flex-direction: column;
  background: var(--paper);
}

.detail-card:nth-child(n) { background: var(--paper); }
.detail-card h2 { margin-top: auto; font-size: clamp(2rem, 3vw, 3rem); }
.detail-card p { max-width: 520px; color: var(--ink-soft); }

.detail-symbol {
  width: 54px;
  height: 54px;
  border: 1px solid var(--line);
  border-radius: 15px;
  display: grid;
  place-items: center;
  background: var(--paper);
  background: var(--blue-wash);
}

.detail-card:nth-child(3n + 2) .detail-symbol { background: var(--orange-wash); }
.detail-card:nth-child(3n) .detail-symbol { background: var(--yellow-wash); }

.faq-layout {
  display: grid;
  grid-template-columns: minmax(250px, 0.52fr) minmax(0, 1fr);
  align-items: start;
  gap: clamp(42px, 8vw, 120px);
}

.faq-intro { position: sticky; top: 118px; }
.faq-list { border-top: 2px solid var(--ink); }

.faq-item {
  border-bottom: 2px solid var(--ink);
}

.faq-item summary {
  min-height: 88px;
  padding: 22px 60px 22px 0;
  display: flex;
  align-items: center;
  position: relative;
  font-family: var(--display);
  font-size: clamp(1.25rem, 2.4vw, 1.85rem);
  font-weight: 750;
  line-height: 1.15;
  cursor: pointer;
  list-style: none;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
  position: absolute;
  right: 4px;
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  background: transparent;
  content: "+";
  font-family: var(--sans);
  font-size: 1.4rem;
  line-height: 1;
  transition: transform 180ms ease, background 180ms ease;
}

.faq-item[open] summary::after {
  color: var(--orange-text);
  transform: rotate(45deg);
}

.faq-answer {
  max-width: 780px;
  padding: 0 58px 26px 0;
  color: var(--ink-soft);
}

.support-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.support-card {
  min-height: 280px;
  padding: 30px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-md);
  display: flex;
  flex-direction: column;
  background: var(--paper);
}

.support-card:nth-child(n) { background: var(--paper); }
.support-card .feature-link { margin-top: auto; }

.support-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 28px;
  border: 1px solid var(--line);
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: var(--blue-wash);
}

.support-card:nth-child(2) .support-icon { background: var(--orange-wash); }
.support-card:nth-child(3) .support-icon { background: var(--yellow-wash); }

.contact-panel {
  padding: clamp(30px, 6vw, 66px);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-md);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 36px;
  align-items: center;
  background: var(--orange-wash);
}

.contact-panel h2 { font-size: clamp(2rem, 3.5vw, 3.35rem); }

.legal-layout {
  display: grid;
  grid-template-columns: 260px minmax(0, 780px);
  justify-content: space-between;
  gap: clamp(42px, 8vw, 120px);
  align-items: start;
}

.legal-nav {
  position: sticky;
  top: 112px;
  padding: 22px;
  border: 2px solid var(--ink);
  border-radius: var(--radius-md);
  background: var(--paper);
}

.legal-nav strong { display: block; margin-bottom: 10px; }
.legal-nav a { min-height: 40px; display: flex; align-items: center; color: var(--ink-soft); font-size: 0.84rem; font-weight: 700; }
.legal-nav a:hover { color: var(--ink); }

.legal-copy {
  max-width: 780px;
}

.legal-copy h2 {
  margin: 2.2em 0 0.5em;
  padding-top: 0.25em;
  font-size: clamp(2rem, 4vw, 3.35rem);
  line-height: 1.05;
}

.legal-copy h2:first-child { margin-top: 0; }
.legal-copy h3 { margin-top: 2em; }
.legal-copy p,
.legal-copy li { color: #4c504d; }
.legal-copy li { margin-bottom: 0.7em; }
.legal-copy a { font-weight: 750; }

.legal-callout {
  margin: 32px 0;
  padding: 24px;
  border: 2px solid var(--ink);
  border-radius: var(--radius-md);
  background: var(--blue);
}

.legal-callout p { margin: 0; color: var(--ink); }

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

.steps li {
  min-height: 96px;
  padding: 22px;
  border: 2px solid var(--ink);
  border-radius: var(--radius-md);
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 18px;
  align-items: center;
  background: var(--paper);
  counter-increment: steps;
}

.steps li::before {
  width: 48px;
  height: 48px;
  border: 2px solid var(--ink);
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--yellow);
  content: counter(steps);
  font-family: var(--display);
  font-weight: 800;
}

.site-footer {
  padding: 74px 0 32px;
  background: var(--ink);
  color: var(--cream);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(240px, 1.35fr) repeat(3, minmax(130px, 0.55fr));
  gap: 44px;
}

.footer-brand {
  width: 145px;
  margin-bottom: 24px;
  filter: brightness(0) invert(1);
}

.footer-copy {
  max-width: 350px;
  color: rgba(253, 248, 242, 0.68);
  font-size: 0.9rem;
}

.footer-title {
  margin-bottom: 13px;
  color: var(--yellow);
  font-size: 0.7rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-links {
  margin: 0;
  padding: 0;
  display: grid;
  gap: 8px;
  list-style: none;
}

.footer-links a {
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  color: rgba(253, 248, 242, 0.76);
  font-size: 0.86rem;
  text-decoration: none;
}

.footer-links a:hover { color: var(--white); text-decoration: underline; }

.footer-bottom {
  margin-top: 62px;
  padding-top: 24px;
  border-top: 1px solid rgba(253, 248, 242, 0.2);
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: rgba(253, 248, 242, 0.56);
  font-size: 0.76rem;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 650ms cubic-bezier(0.22, 1, 0.36, 1), transform 650ms cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes hero-rise {
  from { opacity: 0; transform: translateY(34px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes art-pop {
  from { opacity: 0; transform: translateY(40px) rotate(2deg) scale(0.96); }
  to { opacity: 1; transform: translateY(0) rotate(0) scale(1); }
}

@keyframes marquee {
  to { transform: translateX(-50%); }
}

@media (max-width: 980px) {
  .hero-grid,
  .intro-grid,
  .shared-care,
  .insight-layout,
  .page-hero-grid,
  .faq-layout,
  .legal-layout {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-copy { max-width: 760px; }
  .hero-art { min-height: 540px; }
  .intro-copy,
  .faq-intro,
  .legal-nav { position: static; }
  .care-categories { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .legal-nav { display: none; }
  .footer-grid { grid-template-columns: 1.2fr repeat(2, 0.7fr); }
  .footer-grid > div:last-child { grid-column: 2; }
}

@media (max-width: 780px) {
  .nav-shell { min-height: 70px; }
  .menu-toggle { display: grid; }

  .nav-links {
    position: fixed;
    inset: 70px 0 auto;
    height: calc(100vh - 70px);
    height: calc(100svh - 70px);
    padding: 32px var(--gutter) 50px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 5px;
    background: var(--cream);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-16px);
    visibility: hidden;
    transition: opacity 180ms ease, transform 180ms ease, visibility 0s linear 180ms;
  }

  .nav-links.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
    visibility: visible;
    transition-delay: 0s;
  }

  .nav-link {
    min-height: 58px;
    border-bottom: 1px solid var(--line);
    font-family: var(--display);
    font-size: 1.45rem;
  }

  .nav-link::after { display: none; }
  .nav-links .button { margin-top: 20px; }

  h1 { font-size: clamp(3rem, 13.5vw, 4.6rem); }
  h2 { font-size: clamp(2.25rem, 9vw, 3.35rem); }
  .hero-grid { gap: 18px; }
  .hero-art { min-height: 420px; }
  .feature-card { grid-template-columns: 1fr; }
  .feature-icon { width: 48px; height: 48px; }
  .care-board { min-height: 520px; }
  .feature-detail-grid,
  .support-grid { grid-template-columns: 1fr; }
  .detail-card { min-height: 310px; }
  .trust-strip { grid-template-columns: 1fr; }
  .trust-item { min-height: 180px; border-right: 0; border-bottom: 2px solid var(--ink); }
  .trust-item:last-child { border-bottom: 0; }
  .download-card { grid-template-columns: 1fr; }
  .store-stack { min-width: 0; }
  .contact-panel { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer-grid > div:first-child { grid-column: 1 / -1; }
  .footer-grid > div:last-child { grid-column: auto; }
}

@media (max-width: 560px) {
  body { font-size: 16px; }
  .section { padding-block: 60px; }
  .hero { padding-top: 36px; }
  .page-hero h1 { font-size: clamp(2.75rem, 11.5vw, 3.8rem); }
  .hero-actions { align-items: stretch; flex-direction: column; }
  .hero-actions .button { width: 100%; }
  .hero-art { min-height: 330px; margin-inline: -8px; }
  .feature-card { min-height: 0; padding: 26px; border-radius: var(--radius-md); }
  .care-categories { grid-template-columns: 1fr; }
  .category-card { min-height: 220px; }
  .category-icon { margin-bottom: 30px; }
  .care-board { min-height: 490px; }
  .care-note { width: 88%; padding: 19px; }
  .phone-stage { min-height: 540px; }
  .phone { width: 84%; }
  .page-hero .display-accent {
    display: inline;
    white-space: normal;
    text-decoration-line: underline;
    text-decoration-thickness: 0.07em;
    text-underline-offset: 0.12em;
  }
  .page-hero .display-accent::after { display: none; }
  .download-card { margin-right: 8px; padding: 34px 24px; border-radius: var(--radius-lg); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 34px 20px; }
  .footer-bottom { flex-direction: column; }
  .legal-copy ul,
  .legal-copy ol { padding-left: 22px; }
  .steps li { grid-template-columns: 44px 1fr; padding: 18px; }
  .steps li::before { width: 42px; height: 42px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
  .reveal { opacity: 1; transform: none; }
  .species-track { width: 100%; flex-wrap: wrap; justify-content: center; padding: 14px var(--gutter); }
  .species-track [aria-hidden="true"] { display: none; }
}

@media (prefers-reduced-transparency: reduce) {
  .site-header {
    background: var(--cream);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }
}

@media print {
  .site-header,
  .site-footer,
  .legal-nav,
  .button,
  .skip-link { display: none !important; }
  body { background: white; color: black; font-size: 11pt; }
  .section,
  .page-hero { padding: 20px 0; }
  .container { width: 100%; padding: 0; }
  .legal-layout { display: block; }
  .legal-copy { max-width: none; }
  a { color: black; text-decoration: none; }
  a[href^="http"]::after { content: " (" attr(href) ")"; font-size: 9pt; }
}

/* Product-led homepage ----------------------------------------------------- */

.display-accent {
  isolation: isolate;
}

.hero--product {
  min-height: 760px;
  padding-block: clamp(54px, 6vw, 88px) clamp(68px, 7vw, 96px);
  background:
    linear-gradient(180deg, var(--paper) 0%, #fbfcfc 72%, var(--cream) 100%);
}

.hero--product .hero-grid {
  grid-template-columns: minmax(0, 0.9fr) minmax(520px, 1.1fr);
  gap: clamp(36px, 5vw, 76px);
}

.hero--product .hero-copy {
  max-width: 590px;
}

.hero--product .hero-copy .lede {
  max-width: 570px;
}

.product-hero {
  position: relative;
  min-height: 700px;
  isolation: isolate;
  animation: product-reveal 800ms 100ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.product-hero::before {
  position: absolute;
  inset: 54px 0 54px 7%;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: #f2f6f7;
  content: "";
  z-index: -2;
}

.product-hero::after {
  position: absolute;
  inset: 78px 24px 30px 12%;
  border-radius: var(--radius-xl);
  background: linear-gradient(145deg, rgba(162, 249, 255, 0.32), rgba(255, 255, 255, 0));
  content: "";
  z-index: -1;
}

.app-device {
  position: relative;
  overflow: hidden;
  border: 1px solid #aebbc1;
  border-radius: 38px;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 12px;
  line-height: 1.25;
  box-shadow: 0 24px 60px rgba(27, 37, 43, 0.16), 0 3px 12px rgba(27, 37, 43, 0.09);
}

.app-device strong,
.app-device span,
.app-device small,
.app-device em {
  text-wrap: pretty;
}

.app-device small {
  display: block;
  color: var(--ink-soft);
  font-size: 0.78em;
  font-style: normal;
}

.app-device svg {
  width: 1em;
  height: 1em;
}

.app-device--hero {
  position: absolute;
  z-index: 2;
  top: 0;
  left: 4%;
  width: 322px;
  height: 696px;
}

.app-device--peek {
  position: absolute;
  z-index: 1;
  top: 78px;
  right: 0;
  width: 256px;
  height: 554px;
  opacity: 0.94;
}

.app-status {
  height: 27px;
  padding: 9px 18px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #1f2a30;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.01em;
}

.app-status-icons {
  font-size: 7px;
  letter-spacing: 2px;
}

.app-screen-pad {
  padding: 12px 16px 18px;
}

.app-screen-pad--home {
  padding-top: 7px;
}

.home-toolbar {
  height: 50px;
  padding: 4px 15px 8px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
}

.toolbar-end {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 6px;
}

.app-round-button,
.profile-dot {
  width: 32px;
  height: 32px;
  border: 1px solid var(--line);
  border-radius: 50%;
  display: inline-grid;
  place-items: center;
  background: var(--paper);
  color: var(--blue-deep);
  font-size: 14px;
  font-weight: 800;
}

.app-round-button svg {
  width: 14px;
  height: 14px;
}

.profile-dot {
  border: 0;
  background: var(--blue-wash);
  color: var(--blue-deep);
  font-size: 10px;
}

.profile-dot--large {
  width: 46px;
  height: 46px;
  flex: 0 0 auto;
  background: var(--blue-deep);
  color: var(--white);
  font-size: 14px;
}

.pro-pill,
.status-chip,
.privacy-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #e5d6a4;
  border-radius: 999px;
  background: #fff9dc;
  color: #78621e;
  font-size: 9px;
  font-weight: 800;
}

.pro-pill {
  min-height: 25px;
  padding: 0 11px;
}

.pet-selector,
.health-pet {
  display: flex;
  align-items: center;
  gap: 11px;
}

.pet-selector {
  margin-bottom: 16px;
}

.pet-selector > span:nth-child(2),
.health-pet > span:nth-child(2) {
  flex: 1;
  min-width: 0;
}

.pet-selector strong,
.health-pet strong {
  display: block;
  font-size: 16px;
  line-height: 1.1;
}

.streak {
  display: inline !important;
  margin-left: 6px;
  color: var(--orange-text) !important;
  font-size: 8px !important;
}

.selector-chevron {
  color: var(--ink-soft);
  font-size: 14px;
}

.app-pet-avatar {
  position: relative;
  width: 48px;
  height: 48px;
  flex: 0 0 auto;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--blue-wash);
}

.app-pet-avatar--small {
  width: 34px;
  height: 34px;
}

.app-pet-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.app-section-heading,
.form-label,
.dose-section-label {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
}

.app-section-heading {
  margin-bottom: 9px;
}

.app-section-heading strong {
  font-size: 19px;
  letter-spacing: -0.03em;
}

.app-section-heading span,
.form-label span,
.dose-section-label span {
  color: var(--ink-soft);
  font-size: 8px;
  font-weight: 700;
}

.today-card {
  min-height: 106px;
  padding: 15px 13px;
  border: 1px solid var(--line);
  border-radius: 16px;
  display: grid;
  grid-template-columns: 74px 1fr 1fr;
  align-items: center;
  gap: 13px;
  background: var(--paper);
  box-shadow: 0 3px 10px rgba(27, 37, 43, 0.05);
}

.today-mark {
  width: 62px;
  height: 62px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: var(--blue-wash);
  color: var(--blue-deep);
}

.today-mark--outside {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 2px;
  background: transparent;
}

.today-mark--outside i {
  position: relative;
  width: 17px;
  height: 37px;
  background: #c7ced2;
  clip-path: polygon(50% 0, 83% 34%, 68% 34%, 95% 69%, 72% 69%, 100% 91%, 58% 91%, 58% 100%, 42% 100%, 42% 91%, 0 91%, 28% 69%, 5% 69%, 32% 34%, 17% 34%);
}

.today-mark--outside i:first-child {
  width: 28px;
  height: 55px;
  background: var(--blue-deep);
}

.today-mark--outside i:last-child {
  height: 43px;
}

.today-mark svg {
  width: 28px;
  height: 28px;
}

.today-metric {
  min-width: 0;
}

.today-metric > span {
  display: block;
  min-height: 22px;
  color: var(--ink-soft);
  font-size: 8px;
  font-weight: 700;
}

.today-metric strong {
  display: block;
  font-size: 19px;
  letter-spacing: -0.04em;
}

.today-metric strong small {
  display: inline;
  font-size: 10px;
}

.page-dots {
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.page-dots span {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--line-strong);
}

.page-dots .is-active {
  width: 13px;
  border-radius: 999px;
  background: var(--blue-deep);
}

.quick-actions {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 9px;
}

.quick-action {
  position: relative;
  min-height: 83px;
  padding: 12px 6px 8px;
  border: 1px solid var(--line);
  border-radius: 13px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 8px;
  background: var(--paper);
  box-shadow: 0 3px 9px rgba(27, 37, 43, 0.05);
}

.quick-action.is-highlighted::before {
  position: absolute;
  inset: -2px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--blue), var(--yellow), var(--orange-soft), var(--blue));
  content: "";
  z-index: -1;
}

.quick-action > span {
  color: var(--blue-deep);
}

.quick-action svg {
  width: 23px;
  height: 23px;
}

.quick-action small {
  color: var(--ink-soft);
  font-size: 8px;
  font-weight: 750;
}

.home-up-next {
  margin-top: 17px;
}

.agenda-row {
  min-height: 66px;
  padding: 10px 11px;
  border: 1px solid var(--line);
  border-radius: 13px;
  display: grid;
  grid-template-columns: 32px 3px 1fr 24px;
  align-items: center;
  gap: 9px;
  background: var(--paper);
}

.agenda-time {
  color: var(--ink-soft);
  font-size: 8px;
  font-weight: 750;
}

.agenda-line {
  width: 3px;
  height: 36px;
  border-radius: 3px;
  background: var(--orange);
}

.agenda-check,
.task-state,
.dose-check {
  width: 22px;
  height: 22px;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--ink);
  font-size: 9px;
  font-weight: 800;
}

.app-tabbar {
  position: absolute;
  z-index: 5;
  right: 14px;
  bottom: 14px;
  left: 14px;
  height: 57px;
  padding: 6px 8px;
  border: 1px solid rgba(220, 228, 232, 0.8);
  border-radius: 999px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 9px 22px rgba(27, 37, 43, 0.12);
}

.app-tabbar > span {
  position: relative;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 2px;
  color: #87949c;
}

.app-tabbar > span.is-selected {
  color: var(--ink);
}

.app-tabbar > span.is-selected::before {
  position: absolute;
  top: 0;
  width: 42px;
  height: 32px;
  border-radius: 999px;
  background: var(--blue-deep);
  content: "";
  z-index: -1;
}

.app-tabbar svg {
  width: 15px;
  height: 15px;
}

.app-tabbar .is-selected svg {
  color: var(--white);
}

.app-tabbar small {
  color: inherit;
  font-size: 6px;
  font-weight: 750;
}

.app-device--peek .app-screen-pad {
  padding: 10px 14px;
}

.app-title-row {
  min-height: 42px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 10px;
}

.app-title-row > strong {
  font-size: 21px;
  letter-spacing: -0.035em;
}

.app-title-row--nav {
  grid-template-columns: 32px 1fr auto;
}

.app-title-row--nav > strong {
  text-align: center;
  font-size: 16px;
}

.save-label {
  color: var(--blue-deep);
  font-size: 10px;
  font-weight: 800;
}

.plan-tabs {
  min-height: 42px;
  margin: 1px 0 13px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: end;
}

.plan-tabs span {
  position: relative;
  min-height: 34px;
  display: grid;
  place-items: center;
  color: var(--ink-soft);
  font-size: 8px;
  font-weight: 720;
  text-transform: uppercase;
}

.plan-tabs .is-selected {
  color: var(--ink);
  font-weight: 850;
}

.plan-tabs .is-selected::after {
  position: absolute;
  right: 22%;
  bottom: 0;
  left: 22%;
  height: 2px;
  border-radius: 999px;
  background: var(--ink);
  content: "";
}

.plan-tabs--compact {
  min-height: 31px;
  margin-bottom: 8px;
}

.plan-tabs--compact span {
  min-height: 27px;
  font-size: 6px;
}

.calendar-tools {
  margin-bottom: 7px;
  display: grid;
  grid-template-columns: 1fr 32px;
  align-items: center;
  gap: 12px;
}

.calendar-toggle {
  padding: 3px;
  border-radius: 13px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  background: var(--cream);
}

.calendar-toggle span {
  min-height: 27px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  color: var(--ink-soft);
  font-size: 8px;
  font-weight: 750;
}

.calendar-toggle .is-selected {
  background: var(--ink);
  color: var(--white);
}

.calendar-toggle--compact {
  width: 80%;
  margin: 0 auto 8px;
}

.calendar-toggle--compact span {
  min-height: 22px;
  font-size: 6px;
}

.calendar-filter {
  background: var(--cream);
}

.calendar-mode,
.health-tabs {
  margin: 3px 0 13px;
  padding: 3px;
  border-radius: 999px;
  display: grid;
  background: var(--cream);
}

.calendar-mode {
  grid-template-columns: repeat(3, 1fr);
}

.health-tabs {
  grid-template-columns: repeat(3, 1fr);
}

.calendar-mode span,
.health-tabs span {
  min-height: 27px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  color: var(--ink-soft);
  font-size: 8px;
  font-weight: 750;
}

.calendar-mode .is-selected,
.health-tabs .is-selected {
  background: var(--blue-deep);
  color: var(--white);
}

.calendar-month-row {
  min-height: 35px;
  display: grid;
  grid-template-columns: 28px 1fr 28px;
  align-items: center;
  text-align: center;
}

.calendar-month-row button {
  width: 28px;
  height: 28px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: var(--cream);
  color: var(--ink);
  font: inherit;
}

.calendar-weekdays,
.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  text-align: center;
}

.calendar-weekdays {
  margin-top: 6px;
  color: #87949c;
  font-size: 7px;
  font-weight: 750;
}

.calendar-grid {
  row-gap: 4px;
  margin-top: 6px;
}

.calendar-grid > span {
  position: relative;
  min-height: 29px;
  display: grid;
  place-items: center;
  font-size: 8px;
  font-weight: 650;
}

.calendar-grid--large > span {
  min-height: 34px;
}

.calendar-muted {
  color: #b4bec3;
}

.calendar-selected {
  width: 29px;
  height: 29px;
  margin: auto;
  border-radius: 50%;
  background: var(--blue-deep);
  color: var(--white);
}

.calendar-today {
  width: 29px;
  height: 29px;
  margin: auto;
  border-radius: 50%;
  background: var(--blue);
  color: var(--ink);
}

.has-events::after {
  position: absolute;
  bottom: 1px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--blue-strong);
  content: "";
}

.calendar-event--orange::after {
  background: var(--orange);
}

.calendar-event--green::after {
  background: #64a875;
}

.calendar-agenda-mini,
.access-note {
  display: flex;
  align-items: center;
  gap: 9px;
  background: var(--blue-wash);
}

.calendar-agenda-mini {
  margin-top: 15px;
  padding: 10px;
  border-radius: 13px;
}

.product-demo-note {
  position: absolute;
  z-index: 4;
  right: 20px;
  bottom: 3px;
  margin: 0;
  color: var(--ink-soft);
  font-size: 11px;
  font-weight: 700;
}

.product-tour {
  background: var(--paper);
}

.section--soft-blue {
  background: var(--blue-wash);
}

.section--muted {
  background: #f4f7f8;
}

.section-intro {
  max-width: 790px;
  margin-bottom: clamp(58px, 8vw, 92px);
}

.product-row {
  display: grid;
  grid-template-columns: minmax(320px, 0.82fr) minmax(480px, 1.18fr);
  align-items: center;
  gap: clamp(46px, 8vw, 112px);
}

.product-row--reverse .product-copy {
  grid-column: 2;
  grid-row: 1;
}

.product-row--reverse .screen-scene {
  grid-column: 1;
  grid-row: 1;
}

.product-copy {
  max-width: 480px;
}

.product-copy h2 {
  margin-bottom: 20px;
}

.product-copy > p:not(.product-index) {
  color: var(--ink-soft);
  font-size: 1.03rem;
}

.product-index {
  margin-bottom: 15px;
  color: var(--blue-deep);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.product-points {
  margin: 27px 0;
  padding: 0;
  display: grid;
  gap: 11px;
  list-style: none;
}

.product-points li {
  position: relative;
  padding-left: 27px;
  color: var(--ink);
  font-size: 0.92rem;
  font-weight: 680;
}

.product-points li::before {
  position: absolute;
  top: 0.2em;
  left: 0;
  width: 17px;
  height: 17px;
  border-radius: 5px;
  display: grid;
  place-items: center;
  background: var(--blue-wash);
  color: var(--blue-deep);
  content: "✓";
  font-size: 10px;
  font-weight: 900;
}

.screen-scene {
  position: relative;
  min-height: 760px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  display: grid;
  place-items: center;
  overflow: hidden;
  background: #f4f7f8;
}

.screen-scene::before {
  position: absolute;
  inset: 24px;
  border: 1px solid rgba(199, 209, 214, 0.7);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.42);
  content: "";
}

.screen-scene--calendar {
  background: linear-gradient(160deg, #edf9fb, #f7f9f9 58%);
}

.screen-scene--care {
  background: linear-gradient(160deg, rgba(162, 249, 255, 0.28), #eef6f8 64%);
}

.screen-scene--health {
  background: linear-gradient(160deg, #fcf7f0, #f7f9f9 65%);
}

.screen-scene--walk {
  background: linear-gradient(160deg, #e8eef0, #f7f9f9 62%);
}

.app-device--story {
  z-index: 1;
  width: min(100%, 327px);
  height: 708px;
  border-radius: 40px;
}

.day-panel {
  margin: 15px -16px -18px;
  padding: 8px 16px 22px;
  border-top: 1px solid var(--line);
  border-radius: 22px 22px 0 0;
  background: var(--paper);
  box-shadow: 0 -8px 24px rgba(27, 37, 43, 0.06);
}

.day-panel-handle {
  width: 38px;
  height: 4px;
  margin: 0 auto 13px;
  border-radius: 999px;
  background: var(--line-strong);
}

.day-task {
  min-height: 58px;
  display: grid;
  grid-template-columns: 36px 3px 1fr 22px;
  align-items: center;
  gap: 9px;
  border-top: 1px solid var(--line);
}

.task-time {
  color: var(--ink-soft);
  font-size: 8px;
  font-weight: 750;
}

.task-color {
  width: 3px;
  height: 32px;
  border-radius: 3px;
}

.task-color--blue {
  background: var(--blue-strong);
}

.task-color--yellow {
  background: #d2b942;
}

.task-color--coral {
  background: #ea8c94;
}

.task-state.is-done,
.dose-check.is-done {
  border-color: var(--blue-deep);
  background: var(--blue-deep);
  color: var(--white);
}

.app-tabbar--flush {
  bottom: 13px;
}

.access-identity {
  margin: 12px 0 18px;
  padding: 13px;
  border: 1px solid var(--line);
  border-radius: 16px;
  display: flex;
  align-items: center;
  gap: 11px;
  background: var(--paper);
}

.access-identity > span:nth-child(2) {
  flex: 1;
}

.status-chip {
  min-height: 22px;
  padding: 0 8px;
  border-color: #b9dfc8;
  background: #e7f6ee;
  color: #257d52;
}

.app-form-section {
  margin-top: 15px;
}

.form-label {
  margin-bottom: 9px;
}

.form-label strong,
.dose-section-label strong {
  font-size: 11px;
}

.pet-choice-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.pet-choice {
  position: relative;
  min-height: 82px;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: 13px;
  display: grid;
  place-items: center;
  gap: 5px;
  background: var(--paper);
}

.pet-choice.is-selected {
  border-color: var(--blue-strong);
  background: var(--blue-wash);
}

.pet-choice .app-pet-avatar {
  width: 40px;
  height: 40px;
}

.pet-choice i {
  position: absolute;
  top: 6px;
  right: 6px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--blue-deep);
  color: var(--white);
  font-size: 8px;
  font-style: normal;
}

.responsibility-row {
  min-height: 58px;
  padding: 8px 0;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: 34px 1fr 34px;
  align-items: center;
  gap: 9px;
}

.responsibility-icon,
.dose-icon {
  width: 32px;
  height: 32px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: var(--blue-wash);
  color: var(--blue-deep);
}

.responsibility-icon svg,
.dose-icon svg {
  width: 16px;
  height: 16px;
}

.toggle {
  position: relative;
  width: 32px;
  height: 19px;
  border-radius: 999px;
  background: var(--line-strong);
}

.toggle::after {
  position: absolute;
  top: 2px;
  left: 2px;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: var(--white);
  content: "";
}

.toggle.is-on {
  background: var(--blue-deep);
}

.toggle.is-on::after {
  left: 15px;
}

.access-note {
  margin-top: 15px;
  padding: 11px;
  border-radius: 13px;
}

.access-note > svg {
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
  color: var(--blue-deep);
}

.caregiver-screen {
  padding: 8px 14px 14px;
}

.care-close {
  font-size: 22px;
  font-weight: 450;
}

.care-step {
  margin: 8px 0 17px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
}

.care-step span {
  grid-column: 1 / -1;
  margin-bottom: 3px;
  color: var(--ink-soft);
  font-size: 8px;
  font-weight: 700;
}

.care-step i {
  height: 4px;
  border-radius: 999px;
  background: var(--cream);
}

.care-step i.is-active {
  background: var(--ink);
}

.care-intro {
  margin-bottom: 18px;
}

.care-intro strong {
  display: block;
  margin-bottom: 7px;
  font-size: 23px;
  letter-spacing: -0.04em;
}

.care-intro small {
  font-size: 9px;
  line-height: 1.5;
}

.care-responsibilities {
  margin-top: 0;
}

.responsibility-card {
  min-height: 78px;
  margin-bottom: 8px;
  padding: 9px 10px;
  border: 1px solid transparent;
  border-radius: 15px;
  display: grid;
  grid-template-columns: 31px 1fr 24px;
  align-items: center;
  gap: 9px;
  background: #f2f4f4;
}

.responsibility-card.is-selected {
  border-color: var(--line);
}

.responsibility-card strong,
.responsibility-card small,
.responsibility-card em {
  display: block;
}

.responsibility-card strong {
  font-size: 12px;
}

.responsibility-card small {
  margin-top: 2px;
  font-size: 7px;
  line-height: 1.35;
}

.responsibility-card em {
  margin-top: 5px;
  color: var(--ink);
  font-size: 7px;
  font-style: normal;
  font-weight: 720;
}

.responsibility-check {
  width: 23px;
  height: 23px;
  border: 2px solid #98a6ad;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--white);
  font-size: 10px;
  font-weight: 900;
}

.responsibility-card.is-selected .responsibility-check {
  border-color: var(--ink);
  background: var(--ink);
}

.care-actions {
  margin-top: 11px;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 8px;
}

.care-actions span,
.care-actions strong {
  min-height: 42px;
  border-radius: 13px;
  display: grid;
  place-items: center;
  font-size: 10px;
}

.care-actions span {
  background: var(--cream);
}

.care-actions strong {
  background: var(--ink);
  color: var(--white);
}

.health-pet {
  margin: 12px 0 14px;
  padding: 10px 0;
}

.health-pet .app-pet-avatar {
  width: 44px;
  height: 44px;
}

.health-title-row {
  grid-template-columns: 1fr auto;
}

.mini-pet-selector {
  min-height: 34px;
  padding: 3px 9px 3px 4px;
  border: 1px solid var(--line);
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--ink);
  font-size: 9px;
  font-weight: 750;
}

.screen-scene--health .health-tabs {
  margin: 5px -16px 0;
  padding: 0 12px;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  background: transparent;
}

.screen-scene--health .health-tabs span {
  position: relative;
  min-height: 36px;
  border-radius: 0;
  background: transparent;
  color: var(--ink-soft);
  text-transform: uppercase;
}

.screen-scene--health .health-tabs .is-selected {
  color: var(--ink);
}

.screen-scene--health .health-tabs .is-selected::after {
  position: absolute;
  right: 18%;
  bottom: 0;
  left: 18%;
  height: 2px;
  border-radius: 999px;
  background: var(--ink);
  content: "";
}

.vaccine-history {
  min-height: 45px;
  margin: 0 -16px 12px;
  padding: 0 16px;
  border-bottom: 5px solid #f3f5f5;
  display: grid;
  grid-template-columns: 25px 1fr auto;
  align-items: center;
  gap: 8px;
}

.vaccine-history strong {
  font-size: 12px;
}

.vaccine-history-icon {
  font-size: 20px;
}

.vaccine-summary {
  padding: 13px;
  border-radius: 18px;
  background: #f1f3f3;
}

.vaccine-summary .health-pet {
  margin: 0 0 11px;
  padding: 0;
}

.vaccine-summary .health-pet strong {
  font-size: 13px;
}

.vaccine-counts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.vaccine-counts > span {
  padding: 4px 7px;
  border-right: 1px solid var(--line-strong);
}

.vaccine-counts > span:last-child {
  border-right: 0;
}

.vaccine-counts strong {
  display: block;
  font-size: 25px;
  line-height: 1;
}

.vaccine-counts small {
  min-height: 23px;
  margin-top: 4px;
  font-size: 7px;
  line-height: 1.15;
}

.vaccine-filter {
  width: 82%;
  margin: 12px auto;
  padding: 3px;
  border-radius: 12px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: var(--cream);
}

.vaccine-filter span {
  min-height: 28px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  color: var(--ink-soft);
  font-size: 8px;
  font-weight: 720;
}

.vaccine-filter .is-selected {
  background: var(--ink);
  color: var(--white);
}

.vaccine-card {
  margin-bottom: 9px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--paper);
  box-shadow: 0 3px 10px rgba(27, 37, 43, 0.05);
}

.vaccine-card > div:first-child {
  margin-bottom: 7px;
  display: flex;
  align-items: center;
  gap: 7px;
}

.vaccine-card > div:first-child strong {
  font-size: 12px;
}

.vaccine-card > small {
  margin-top: 3px;
  font-size: 7px;
}

.vaccine-tag {
  padding: 4px 7px;
  border-radius: 6px;
  background: var(--yellow);
  font-size: 7px;
  font-weight: 800;
}

.vaccine-tag--neutral {
  background: var(--cream);
}

.vaccine-actions {
  margin-top: 10px;
  padding-top: 9px;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  text-align: center;
}

.vaccine-actions span {
  color: var(--ink-soft);
  font-size: 7px;
  font-weight: 720;
}

.vaccine-card--compact {
  padding-block: 10px;
}

.week-strip {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
}

.week-strip > span {
  min-height: 48px;
  border-radius: 11px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 3px;
  color: var(--ink-soft);
}

.week-strip small {
  color: inherit;
  font-size: 7px;
}

.week-strip b {
  font-size: 10px;
}

.week-strip .is-selected {
  background: var(--blue-deep);
  color: var(--white);
}

.dose-progress {
  margin: 16px 0;
  padding: 13px;
  border-radius: 14px;
  display: grid;
  gap: 10px;
  background: var(--blue-wash);
}

.dose-progress > span:first-child {
  display: flex;
  justify-content: space-between;
  gap: 10px;
}

.progress-track {
  height: 7px;
  overflow: hidden;
  border-radius: 999px;
  background: var(--line);
}

.progress-track i {
  display: block;
  width: 50%;
  height: 100%;
  border-radius: inherit;
  background: var(--blue-deep);
}

.dose-section-label {
  margin: 12px 0 7px;
}

.dose-section-label span {
  width: 19px;
  height: 19px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--cream);
}

.dose-card {
  min-height: 82px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 15px;
  display: grid;
  grid-template-columns: 38px 1fr 26px;
  align-items: center;
  gap: 10px;
  background: var(--paper);
  box-shadow: 0 3px 10px rgba(27, 37, 43, 0.05);
}

.dose-card--taken {
  opacity: 0.7;
}

.dose-card em {
  display: block;
  margin-top: 6px;
  color: var(--blue-deep);
  font-size: 7px;
  font-weight: 750;
}

.app-device--walk {
  background: #e8eef0;
}

.walk-map {
  position: relative;
  height: 390px;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.42) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.42) 1px, transparent 1px),
    #e7edef;
  background-size: 34px 34px;
}

.walk-map > svg {
  width: 100%;
  height: 100%;
}

.map-road {
  fill: none;
  stroke: #ffffff;
  stroke-linecap: round;
  stroke-width: 16;
}

.map-road--b,
.map-road--d {
  stroke-width: 11;
}

.walk-route-shadow,
.walk-route-line {
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.walk-route-shadow {
  stroke: var(--blue-deep);
  stroke-width: 10;
}

.walk-route-line {
  stroke: var(--blue-strong);
  stroke-width: 5;
}

.route-start,
.route-end {
  stroke: var(--white);
  stroke-width: 4;
}

.route-start {
  fill: var(--blue-deep);
}

.route-end {
  fill: var(--orange);
}

.route-event {
  fill: var(--yellow);
  stroke: var(--blue-deep);
  stroke-width: 3;
}

.route-event--two {
  fill: var(--orange-soft);
}

.route-event--three {
  fill: var(--blue);
}

.walk-map-controls {
  position: absolute;
  top: 34px;
  right: 14px;
  left: 14px;
  display: flex;
  justify-content: space-between;
}

.walk-map-controls span {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.94);
  color: var(--ink);
  font-weight: 850;
  box-shadow: 0 3px 10px rgba(27, 37, 43, 0.1);
}

.privacy-pill {
  position: absolute;
  right: 14px;
  bottom: 16px;
  min-height: 28px;
  padding: 0 10px;
  border-color: rgba(220, 228, 232, 0.9);
  gap: 6px;
  background: rgba(255, 255, 255, 0.94);
  color: var(--blue-deep);
}

.privacy-pill svg {
  width: 14px;
  height: 14px;
}

.walk-sheet {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  min-height: 347px;
  padding: 9px 17px 18px;
  border-radius: 24px 24px 0 0;
  background: var(--paper);
  box-shadow: 0 -10px 26px rgba(27, 37, 43, 0.09);
}

.walk-title-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.walk-title-row > span:first-child {
  flex: 1;
}

.walk-title-row strong {
  display: block;
  font-size: 18px;
  letter-spacing: -0.03em;
}

.walk-title-row .app-pet-avatar {
  width: 42px;
  height: 42px;
}

.walk-metrics {
  margin-top: 17px;
  padding-block: 14px;
  border-block: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px 10px;
}

.walk-metrics > span:nth-child(even) {
  padding-left: 15px;
  border-left: 1px solid var(--line);
}

.walk-metrics strong {
  display: block;
  font-size: 19px;
  letter-spacing: -0.035em;
}

.walk-metrics strong small {
  display: inline;
  color: inherit;
  font-size: 9px;
}

.walk-event-row {
  min-height: 60px;
  display: grid;
  grid-template-columns: 24px 1fr auto;
  align-items: center;
  gap: 9px;
}

.walk-event-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--blue-wash);
  color: var(--blue-deep);
}

.walk-event-icon svg {
  width: 12px;
  height: 12px;
}

.trust-strip {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: 0 8px 24px rgba(27, 37, 43, 0.05);
}

.trust-item {
  min-height: 210px;
  border-right: 1px solid var(--line);
}

.trust-item strong {
  font-family: var(--sans);
  font-size: clamp(1.25rem, 2.1vw, 1.75rem);
  letter-spacing: -0.025em;
}

.download-card {
  border-color: var(--line);
  background: var(--blue-wash);
  box-shadow: 0 12px 34px rgba(27, 37, 43, 0.08);
}

.download-card::after {
  display: none;
}

@keyframes product-reveal {
  from { opacity: 0; transform: translateY(22px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 1080px) {
  .hero--product .hero-grid {
    grid-template-columns: minmax(0, 0.82fr) minmax(490px, 1.18fr);
    gap: 32px;
  }

  .app-device--hero {
    left: 0;
  }

  .app-device--peek {
    right: -30px;
  }
}

@media (max-width: 980px) {
  .hero--product {
    min-height: auto;
  }

  .hero--product .hero-grid,
  .product-row {
    grid-template-columns: 1fr;
  }

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

  .product-hero {
    width: min(100%, 680px);
    min-height: 690px;
    margin-inline: auto;
  }

  .app-device--hero {
    left: 8%;
  }

  .app-device--peek {
    right: 4%;
  }

  .product-row--reverse .product-copy,
  .product-row--reverse .screen-scene {
    grid-column: auto;
    grid-row: auto;
  }

  .product-copy {
    max-width: 680px;
  }

  .screen-scene {
    width: min(100%, 700px);
    margin-inline: auto;
  }

  .product-row--reverse .screen-scene {
    order: 2;
  }
}

@media (max-width: 720px) {
  h1 {
    font-size: clamp(2.8rem, 12vw, 4.15rem);
  }

  h2 {
    font-size: clamp(2rem, 8.5vw, 3rem);
  }

  .hero--product {
    padding-top: 38px;
  }

  .product-hero {
    min-height: 600px;
    margin-top: 10px;
  }

  .product-hero::before {
    inset: 36px 0 35px;
  }

  .product-hero::after {
    inset: 54px 12px 18px;
  }

  .app-device--hero {
    top: 0;
    left: 50%;
    transform: translateX(-56%) scale(0.82);
    transform-origin: top center;
  }

  .app-device--peek {
    top: 64px;
    right: -5%;
    transform: scale(0.69);
    transform-origin: top right;
  }

  .product-demo-note {
    right: 16px;
    bottom: 0;
  }

  .section-intro {
    margin-bottom: 52px;
  }

  .product-row {
    gap: 36px;
  }

  .screen-scene {
    min-height: 736px;
    padding: 20px 12px;
    border-radius: var(--radius-lg);
  }

  .screen-scene::before {
    inset: 12px;
  }

  .app-device--story {
    height: 696px;
  }

  .trust-item {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
}

@media (max-width: 500px) {
  .hero--product .hero-grid {
    gap: 18px;
  }

  .product-hero {
    min-height: 583px;
    margin-inline: -8px;
  }

  .app-device--hero {
    transform: translateX(-50%) scale(0.79);
  }

  .app-device--peek {
    display: none;
  }

  .product-demo-note {
    right: 50%;
    transform: translateX(50%);
    white-space: nowrap;
  }

  .screen-scene {
    margin-inline: -8px;
  }

  .app-device--story {
    width: min(100%, 350px);
  }

  .download-card {
    margin-right: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .product-hero {
    animation: none;
  }
}

@media print {
  .product-hero,
  .screen-scene,
  .species-ribbon {
    break-inside: avoid;
  }
}
