:root {
  --teal: #368f8b;
  --navy: #160f29;
  --white: #ffffff;
  --coral: #f87060;
  --beige: #f3dfc1;
  --taupe: #9b8576;
  --mist: #f8f5ef;
  --ink: #261d3c;
  --muted: #675d76;
  --line: rgba(22, 15, 41, 0.1);
  --shadow: 0 28px 70px rgba(22, 15, 41, 0.12);
  --radius-xl: 34px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Outfit", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(54, 143, 139, 0.12), transparent 28%),
    radial-gradient(circle at 85% 8%, rgba(248, 112, 96, 0.1), transparent 18%),
    linear-gradient(180deg, #fcfaf6 0%, #fffefe 35%, #f7f3ec 100%);
}

body.modal-open {
  overflow: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.18;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.5) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.5) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.2), transparent 80%);
}

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

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

.container {
  width: min(calc(100% - 2rem), var(--container));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: transparent;
  border-bottom: 1.5px solid transparent;
  box-shadow: none;
  transition:
    background 280ms ease,
    border-color 280ms ease,
    box-shadow 280ms ease;
}

.site-header.scrolled {
  background: #fefcf8;
  border-bottom-color: rgba(243, 223, 193, 0.75);
  box-shadow: 0 2px 18px rgba(22, 15, 41, 0.04);
}

.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
}

.brand img {
  height: 38px;
  width: auto;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

.mobile-menu {
  display: none;
  position: relative;
}

.mobile-menu-toggle {
  /* Reset summary defaults */
  appearance: none;
  -webkit-appearance: none;
  list-style: none;
  padding: 0;
  margin: 0;

  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid rgba(22, 15, 41, 0.1);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 4px 12px rgba(22, 15, 41, 0.08);
  cursor: pointer;
  flex-shrink: 0;
}

.mobile-menu-toggle::-webkit-details-marker {
  display: none;
}

/* Stack the 3 lines as a flex column so gap is even */
.mobile-menu-toggle .hamburger {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.mobile-menu-toggle span {
  display: block;
  width: 16px;
  height: 1.5px;
  border-radius: 999px;
  background: var(--navy);
  transition:
    transform 200ms ease,
    opacity 200ms ease;
}

.mobile-menu-toggle span + span {
  margin-top: 0; /* gap handled by flex parent */
}

.mobile-menu[open] .mobile-menu-toggle span:nth-child(1) {
  transform: translateY(5.5px) rotate(45deg);
}

.mobile-menu[open] .mobile-menu-toggle span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.mobile-menu[open] .mobile-menu-toggle span:nth-child(3) {
  transform: translateY(-5.5px) rotate(-45deg);
}

.mobile-menu-panel {
  position: absolute;
  top: calc(100% + 0.75rem);
  right: 0;
  width: min(320px, calc(100vw - 2rem));
  padding: 1rem;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(22, 15, 41, 0.08);
  box-shadow: 0 24px 48px rgba(22, 15, 41, 0.14);
  backdrop-filter: blur(16px);
}

.mobile-menu-actions {
  display: grid;
  gap: 0.65rem;
}

.mobile-menu-actions .button {
  width: 100%;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  padding: 0.98rem 1.35rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 0.98rem;
  font-weight: 600;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease,
    background-color 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button-primary {
  background: var(--teal);
  color: var(--white);
  box-shadow: 0 18px 30px rgba(54, 143, 139, 0.22);
}

.button-primary:hover,
.button-primary:focus-visible {
  box-shadow: 0 24px 36px rgba(54, 143, 139, 0.28);
}

.button-secondary {
  color: var(--navy);
  border-color: rgba(22, 15, 41, 0.14);
  background: rgba(255, 255, 255, 0.72);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  border-color: rgba(54, 143, 139, 0.35);
  background: rgba(255, 255, 255, 0.96);
}

main {
  overflow: hidden;
}

section {
  padding: 5.5rem 0;
}

.hero {
  padding-top: 3rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
  gap: 2.5rem;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.55rem 0.9rem;
  border-radius: 999px;
  background: rgba(54, 143, 139, 0.09);
  color: var(--teal);
  font-size: 0.92rem;
  font-weight: 600;
}

.eyebrow i {
  color: var(--coral);
}

h1,
h2,
h3 {
  margin: 0;
  letter-spacing: -0.04em;
}

h1 {
  font-size: clamp(3rem, 6vw, 5.35rem);
  font-family: "Outfit", sans-serif;
  font-weight: 800;
  line-height: 0.93;
  margin-top: 1.5rem;
}

.hero-copy p {
  margin: 1.1rem 0 0;
  font-size: 1.08rem;
  line-height: 1.75;
  color: var(--muted);
  max-width: 41rem;
}

.support-line {
  color: var(--ink);
  font-weight: 500;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 2rem;
}

.hero-visual {
  position: relative;
  min-height: 660px;
}

.orb,
.blob {
  position: absolute;
  border-radius: 999px;
  filter: blur(4px);
}

.orb-teal {
  right: 8%;
  top: 4%;
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, rgba(54, 143, 139, 0.28), transparent 70%);
}

.orb-coral {
  left: 12%;
  bottom: 12%;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(248, 112, 96, 0.2), transparent 72%);
}

.mock-stack {
  position: absolute;
  inset: 0;
}

.glass-card,
.device,
.insight-card,
.scene-card {
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.55);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.device {
  position: absolute;
  border-radius: 38px;
  padding: 1rem;
}

.phone {
  width: min(340px, 62vw);
  top: 3.5rem;
  left: 10%;
}

.tablet {
  width: min(330px, 58vw);
  right: 3%;
  bottom: 2rem;
  border-radius: 30px;
  padding: 1.1rem;
}

.device-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}

.mini-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.9rem;
  font-weight: 700;
}

.mini-brand img {
  width: 24px;
  height: 24px;
}

.status-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 0.65rem;
  border-radius: 999px;
  background: rgba(54, 143, 139, 0.1);
  color: var(--teal);
  font-size: 0.8rem;
  font-weight: 600;
}

.pet-profile {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem;
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(243, 223, 193, 0.6), rgba(255, 255, 255, 0.95));
}

.pet-profile h3 {
  font-size: 1.1rem;
  font-family: "Outfit", sans-serif;
  letter-spacing: -0.03em;
}

.pet-profile p {
  margin: 0.35rem 0 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.avatar-ring {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--teal), #5ca8a4);
  color: var(--white);
  font-size: 1.3rem;
}

.chat-thread {
  display: grid;
  gap: 0.85rem;
  margin-top: 1rem;
}

.bubble {
  max-width: 88%;
  padding: 0.9rem 1rem;
  border-radius: 18px;
  line-height: 1.55;
  font-size: 0.93rem;
}

.bubble.owner {
  justify-self: end;
  background: rgba(54, 143, 139, 0.14);
  color: var(--ink);
  border-bottom-right-radius: 8px;
}

.bubble.ai {
  background: rgba(22, 15, 41, 0.05);
  border-bottom-left-radius: 8px;
  color: var(--muted);
}

.signal-bar {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.signal {
  padding: 0.55rem 0.75rem;
  border-radius: 999px;
  background: #fff;
  border: 1px solid rgba(22, 15, 41, 0.07);
  font-size: 0.82rem;
  color: var(--ink);
}

.report-card {
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(22, 15, 41, 0.98), rgba(36, 29, 56, 0.95));
  color: var(--white);
  padding: 1.4rem;
}

.report-card h3 {
  font-size: 1.15rem;
  font-family: "Outfit", sans-serif;
  letter-spacing: -0.03em;
}

.report-meta,
.report-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.6rem;
}

.report-meta {
  margin-top: 0.8rem;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.86rem;
}

.timeline {
  display: grid;
  gap: 0.9rem;
  margin-top: 1rem;
}

.timeline-item {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 0.85rem;
  align-items: start;
}

.timeline-dot {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: rgba(243, 223, 193, 0.16);
  color: var(--beige);
}

.timeline-copy h4 {
  margin: 0;
  font-size: 0.95rem;
}

.timeline-copy p {
  margin: 0.3rem 0 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.88rem;
  line-height: 1.5;
}

.section-heading {
  max-width: 44rem;
  margin-bottom: 2.2rem;
}

.section-heading h2 {
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  font-family: "Outfit", sans-serif;
  font-weight: 800;
  line-height: 0.98;
  margin-top: 1.35rem;
}

.section-heading p {
  margin: 1rem 0 0;
  color: var(--muted);
  line-height: 1.8;
  font-size: 1.02rem;
}

.problem-grid,
.export-grid,
.audience-grid,
.cta-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 2rem;
  align-items: center;
}

.scene-card {
  position: relative;
  border-radius: var(--radius-xl);
  padding: 1.4rem;
  overflow: hidden;
}

.scene-card::after {
  content: "";
  position: absolute;
  inset: auto -18% -28% auto;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: rgba(54, 143, 139, 0.08);
}

.scene-grid {
  display: grid;
  grid-template-columns: 0.94fr 1.06fr;
  gap: 1rem;
  align-items: center;
}

.pet-portrait {
  position: relative;
  min-height: 320px;
  border-radius: 28px;
  background:
    radial-gradient(circle at 50% 20%, rgba(255, 255, 255, 0.7), transparent 32%),
    linear-gradient(180deg, rgba(243, 223, 193, 0.95), rgba(221, 190, 168, 0.88));
  overflow: hidden;
}

.pet-portrait .fa-dog {
  position: absolute;
  left: 50%;
  top: 53%;
  transform: translate(-50%, -50%);
  font-size: 7rem;
  color: rgba(22, 15, 41, 0.9);
}

.pet-portrait .halo {
  position: absolute;
  inset: 20% 18%;
  border-radius: 50%;
  border: 1px dashed rgba(22, 15, 41, 0.16);
}

.floating-note {
  position: absolute;
  padding: 0.8rem 0.95rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 14px 30px rgba(22, 15, 41, 0.08);
  font-size: 0.86rem;
  line-height: 1.45;
}

.floating-note strong {
  display: block;
  margin-bottom: 0.3rem;
  color: var(--ink);
}

.note-top {
  top: 1rem;
  left: 1rem;
}

.note-bottom {
  right: 1rem;
  bottom: 1rem;
}

.owner-panel {
  padding: 1.4rem;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(248, 245, 239, 0.92));
  border: 1px solid rgba(22, 15, 41, 0.08);
}

.owner-panel h3 {
  font-family: "Outfit", sans-serif;
  font-size: 1.22rem;
  letter-spacing: -0.03em;
}

.owner-stress {
  display: grid;
  gap: 0.8rem;
  margin-top: 1rem;
}

.stress-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
}

.stress-label {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  color: var(--muted);
}

.stress-meter {
  width: 42%;
  height: 10px;
  border-radius: 999px;
  background: rgba(22, 15, 41, 0.08);
  overflow: hidden;
}

.stress-fill {
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--teal), var(--coral));
}

/* ── How It Works — alternating step rows ─────────────────────────────────── */

.hiw-steps {
  display: grid;
  gap: 5rem;
  margin-top: 4rem;
}

.hiw-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hiw-row--flip {
  direction: rtl;
}
.hiw-row--flip > * {
  direction: ltr;
}

/* Step text side */
.hiw-text {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.hiw-num {
  font-size: 5rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.05em;
  color: transparent;
  -webkit-text-stroke: 2px rgba(54, 143, 139, 0.25);
  user-select: none;
}

.hiw-text h3 {
  font-size: 1.75rem;
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.2;
  margin: 0;
  color: var(--ink);
}

.hiw-text p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--muted);
  margin: 0;
  max-width: 38ch;
}

/* Visual side */
.hiw-visual {
  border-radius: var(--radius-xl);
  overflow: hidden;
}

.hiw-photo {
  width: 100%;
  height: 400px;
  object-fit: cover;
  object-position: center top;
  border-radius: var(--radius-xl);
  display: block;
}

/* ── App mockups ─────────────────────────────────────────────────────────── */

.hiw-mockup {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(22, 15, 41, 0.08);
  box-shadow: var(--shadow);
  border-radius: var(--radius-xl);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

/* Shared mock parts */
.mock-header {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.mock-avatar {
  font-size: 2rem;
  line-height: 1;
}

.mock-title {
  font-weight: 700;
  font-size: 1rem;
  color: var(--ink);
  letter-spacing: -0.02em;
}

.mock-sub {
  font-size: 0.8rem;
  color: var(--muted);
  margin-top: 0.15rem;
}

.mock-btn {
  background: rgba(22, 15, 41, 0.05);
  border: 1px solid rgba(22, 15, 41, 0.1);
  border-radius: 14px;
  padding: 0.7rem 1.1rem;
  font-family: "Outfit", sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--ink);
  cursor: pointer;
  text-align: center;
  transition: background 0.18s;
}

.mock-btn--teal {
  background: var(--teal);
  color: #fff;
  border-color: var(--teal);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

/* Log mockup */
.mock-entries {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.mock-entry {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.75rem 1rem;
  background: var(--mist);
  border-radius: 14px;
}

.mock-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}
.mock-dot--coral { background: var(--coral); }
.mock-dot--amber { background: #f5a623; }
.mock-dot--teal  { background: var(--teal); }

.mock-label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--ink);
}

.mock-time {
  font-size: 0.775rem;
  color: var(--muted);
  margin-top: 0.1rem;
}

/* Export mockup */
.mock-doc-header {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.mock-doc-icon {
  font-size: 1.5rem;
  color: var(--teal);
  flex-shrink: 0;
}

.mock-badge {
  margin-left: auto;
  background: rgba(54, 143, 139, 0.12);
  color: var(--teal);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.3rem 0.75rem;
  border-radius: 99px;
  letter-spacing: 0.03em;
}

.mock-timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-left: 2px solid var(--line);
  padding-left: 1.25rem;
  margin-left: 0.25rem;
}

.mock-tl-row {
  display: flex;
  gap: 0.85rem;
  align-items: baseline;
  padding: 0.55rem 0;
  border-bottom: 1px solid var(--line);
  position: relative;
}

.mock-tl-row::before {
  content: "";
  position: absolute;
  left: -1.4rem;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--teal);
  flex-shrink: 0;
}

.mock-tl-day {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--teal);
  min-width: 3rem;
}

.mock-tl-event {
  font-size: 0.85rem;
  color: var(--ink);
}

/* Insight / chart mockup */
.mock-insight-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: 0.01em;
}

.mock-chart {
  display: flex;
  align-items: flex-end;
  gap: 1rem;
  height: 120px;
  padding: 0 0.5rem;
}

.mock-bar-group {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  height: 100%;
  justify-content: flex-end;
}

.mock-bar {
  width: 100%;
  border-radius: 8px 8px 0 0;
  background: rgba(54, 143, 139, 0.25);
  transition: height 0.4s ease;
}

.mock-bar--peak {
  background: var(--coral);
}

.mock-bar--low {
  background: rgba(54, 143, 139, 0.5);
}

.mock-bar-label {
  font-size: 0.75rem;
  color: var(--muted);
  font-weight: 600;
}

.mock-insight-note {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  background: rgba(248, 112, 96, 0.08);
  border: 1px solid rgba(248, 112, 96, 0.2);
  border-radius: 14px;
  padding: 0.9rem 1rem;
  font-size: 0.875rem;
  line-height: 1.5;
  color: var(--ink);
}

.mock-insight-note i {
  color: var(--coral);
  flex-shrink: 0;
  margin-top: 0.15rem;
}

/* ── Legacy card styles still used elsewhere ──────────────────────────────── */

.concern-card,
.diff-card,
.audience-card,
.trust-card {
  border-radius: 28px;
  padding: 1.4rem;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(22, 15, 41, 0.08);
  box-shadow: 0 20px 40px rgba(22, 15, 41, 0.06);
}

.icon-badge {
  width: 46px;
  height: 46px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: rgba(248, 112, 96, 0.12);
  color: var(--coral);
}

.diff-card h3,
.audience-card h3,
.trust-card h3 {
  font-family: "Outfit", sans-serif;
  font-size: 1.2rem;
  letter-spacing: -0.03em;
}

.concern-card p,
.diff-card p,
.audience-card p,
.trust-card p,
.comparison p {
  margin: 0;
  line-height: 1.7;
  color: var(--muted);
}

/* ── Breadth — two-column split ───────────────────────────────────────────── */

.breadth-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  align-items: start;
  margin-top: 3.5rem;
}

/* Column header */
.breadth-col-header {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding-bottom: 1rem;
  margin-bottom: 1rem;
  border-bottom: 2px solid transparent;
}

.breadth-col-header--health {
  color: var(--teal);
  border-color: rgba(54, 143, 139, 0.3);
}

.breadth-col-header--behavior {
  color: var(--coral);
  border-color: rgba(248, 112, 96, 0.3);
}

/* Concern chips */
.concern-chips {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.concern-chip {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.8rem 1rem;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(22, 15, 41, 0.08);
  border-radius: 14px;
  font-size: 0.925rem;
  font-weight: 500;
  color: var(--ink);
  transition: transform 0.16s, box-shadow 0.16s;
}

.concern-chip:hover {
  transform: translateX(3px);
  box-shadow: 0 6px 20px rgba(22, 15, 41, 0.08);
}

.concern-chip i {
  color: var(--muted);
  font-size: 0.875rem;
  flex-shrink: 0;
}


/* ── Breadth guide — character + speech bubble ───────────────────────────── */

.breadth-guide {
  margin-top: 3.5rem;
  display: flex;
  align-items: flex-end;
  gap: 1.25rem;
}

.breadth-guide-avatar {
  flex-shrink: 0;
  width: 88px;
  height: 88px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid #fff;
  box-shadow: 0 8px 28px rgba(22, 15, 41, 0.14);
  position: relative;
  z-index: 1;
}

.breadth-guide-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.breadth-guide-bubble {
  position: relative;
  background: #fff;
  border: 1px solid rgba(22, 15, 41, 0.09);
  border-radius: 20px 20px 20px 4px;
  padding: 1.1rem 1.4rem;
  box-shadow: 0 8px 32px rgba(22, 15, 41, 0.08);
  max-width: 520px;
}

/* Speech bubble tail pointing left toward the avatar */
.breadth-guide-bubble::before {
  content: "";
  position: absolute;
  left: -10px;
  bottom: 18px;
  width: 0;
  height: 0;
  border-top: 8px solid transparent;
  border-bottom: 8px solid rgba(22, 15, 41, 0.09);
  border-right: 10px solid rgba(22, 15, 41, 0.09);
}

.breadth-guide-bubble::after {
  content: "";
  position: absolute;
  left: -8px;
  bottom: 19px;
  width: 0;
  height: 0;
  border-top: 7px solid transparent;
  border-bottom: 7px solid #fff;
  border-right: 9px solid #fff;
}

.breadth-guide-bubble p {
  margin: 0;
  font-size: 0.975rem;
  line-height: 1.65;
  color: var(--ink);
}

/* ── Why DearPaw ──────────────────────────────────────────────────────────── */

.why-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 4rem;
  align-items: center;
}

/* Phone frame */
.why-phone {
  display: flex;
  justify-content: center;
}

.why-phone-shell {
  width: 220px;
  background: #1b1728;
  border-radius: 42px;
  padding: 14px 12px 18px;
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.06),
    0 40px 80px rgba(22, 15, 41, 0.35),
    inset 0 1px 0 rgba(255,255,255,0.08);
  position: relative;
}

.why-phone-notch {
  width: 72px;
  height: 26px;
  background: #1b1728;
  border-radius: 0 0 18px 18px;
  margin: 0 auto 8px;
  position: relative;
  z-index: 2;
}

.why-phone-notch::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
}

.why-phone-screen {
  border-radius: 28px;
  overflow: hidden;
  background: #fff;
}

.why-phone-screen img {
  display: block;
  width: 100%;
  height: auto;
}

/* Comparison table */
.diff-table {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(22, 15, 41, 0.08);
  box-shadow: 0 16px 48px rgba(22, 15, 41, 0.07);
  margin-top: 2rem;
}

.diff-col {
  padding: 1.5rem;
}

.diff-col--before {
  background: rgba(22, 15, 41, 0.03);
  border-right: 1px solid rgba(22, 15, 41, 0.08);
}

.diff-col--after {
  background: rgba(54, 143, 139, 0.05);
}

.diff-col-label {
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(22, 15, 41, 0.08);
}

.diff-col--before .diff-col-label {
  color: var(--muted);
}

.diff-col--after .diff-col-label {
  color: var(--teal);
}

.diff-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.diff-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.925rem;
  line-height: 1.5;
}

.diff-list li::before {
  flex-shrink: 0;
  margin-top: 0.1em;
  font-size: 0.85rem;
  font-weight: 700;
}

.diff-col--before .diff-list li {
  color: var(--muted);
  text-decoration: none;
}

.diff-col--before .diff-list li::before {
  content: "✕";
  color: rgba(22, 15, 41, 0.25);
}

.diff-col--after .diff-list li {
  color: var(--ink);
  font-weight: 500;
}

.diff-col--after .diff-list li::before {
  content: "✓";
  color: var(--teal);
  font-weight: 800;
}

.audience-visual {
  border-radius: 32px;
  overflow: hidden;
  box-shadow: var(--shadow);
  line-height: 0;
}

.audience-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 32px;
}

.pet-switcher {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}

.pet-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.85rem 1rem;
  border-radius: 18px;
  background: rgba(243, 223, 193, 0.5);
  border: 1px solid rgba(22, 15, 41, 0.08);
  font-weight: 600;
}

.pet-chip.active {
  background: rgba(54, 143, 139, 0.12);
  color: var(--teal);
}

.history-board {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
}

.history-column {
  border-radius: 22px;
  background: #f8f5ef;
  padding: 1rem;
  border: 1px solid rgba(22, 15, 41, 0.07);
}

.history-column h3 {
  font-family: "Outfit", sans-serif;
  font-size: 0.95rem;
  margin-bottom: 0.7rem;
}

.history-event {
  padding: 0.75rem;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(22, 15, 41, 0.05);
  margin-top: 0.65rem;
  font-size: 0.9rem;
  color: var(--muted);
}

.audience-list {
  display: grid;
  gap: 1rem;
}

.export-panel {
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(22, 15, 41, 0.08);
  padding: 1.35rem;
  box-shadow: var(--shadow);
}

.export-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}

.export-top h3 {
  font-family: "Outfit", sans-serif;
  font-size: 1.18rem;
}

.export-preview-frame {
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid rgba(22, 15, 41, 0.08);
  background: linear-gradient(180deg, rgba(255, 255, 255, 1), rgba(248, 245, 239, 1));
  box-shadow: 0 16px 30px rgba(22, 15, 41, 0.05);
}

.export-preview-frame img {
  display: block;
  width: 100%;
  height: auto;
}

.appointment-track {
  display: grid;
  gap: 0.85rem;
  margin-top: 1rem;
}

.appointment-step {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding: 0.85rem 1rem;
  border-radius: 18px;
  background: rgba(54, 143, 139, 0.07);
  color: var(--ink);
}

.appointment-step i {
  color: var(--teal);
}

.trust-shell {
  border-radius: 36px;
  background: #160f29;
  color: var(--white);
  padding: 2rem;
}

.trust-shell .section-heading p {
  color: rgba(255, 255, 255, 0.78);
}

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

.trust-card {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.1);
  box-shadow: none;
}

.trust-card p {
  color: rgba(255, 255, 255, 0.78);
}

.trust-card .icon-badge {
  background: rgba(243, 223, 193, 0.16);
  color: var(--beige);
}

.cta-panel {
  position: relative;
  overflow: hidden;
  border-radius: 38px;
  background:
    radial-gradient(circle at top right, rgba(243, 223, 193, 0.55), transparent 28%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(248, 245, 239, 0.92));
  border: 1px solid rgba(22, 15, 41, 0.08);
  box-shadow: var(--shadow);
  padding: 2rem;
}

.cta-panel::before {
  content: "";
  position: absolute;
  inset: auto auto -120px -40px;
  width: 280px;
  height: 280px;
  background: rgba(54, 143, 139, 0.08);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

.cta-panel > * {
  position: relative;
  z-index: 1;
}

.cta-visual {
  position: relative;
  display: grid;
  gap: 1rem;
}

.final-device {
  border-radius: 30px;
  padding: 1rem;
  background: linear-gradient(180deg, rgba(22, 15, 41, 1), rgba(36, 29, 56, 0.96));
  color: var(--white);
  box-shadow: 0 30px 50px rgba(22, 15, 41, 0.2);
}

.stats-band {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
  margin-top: 1rem;
}

.stat-tile {
  padding: 0.9rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.07);
}

.stat-tile strong {
  display: block;
  font-size: 1.35rem;
  color: var(--taupe);
}

footer {
  padding: 2rem 0 2.8rem;
  color: var(--muted);
}

.footer-shell {
  display: grid;
  gap: 1.35rem;
  padding-top: 1.85rem;
}

.footer-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1.5rem;
}

.footer-brand-block {
  display: grid;
  gap: 0.8rem;
}

.footer-brand-row {
  display: block;
  padding-bottom: 0.2rem;
}

.footer-shell img {
  height: 34px;
  width: auto;
}

.footer-copy {
  display: grid;
  gap: 0.55rem;
  max-width: 36rem;
  color: var(--ink);
}

.footer-copy p {
  margin: 0;
  line-height: 1.65;
}

.footer-top-link {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.8rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(22, 15, 41, 0.12);
  background: rgba(255, 255, 255, 0.72);
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 600;
  white-space: nowrap;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    color 180ms ease,
    background-color 180ms ease;
}

.footer-top-link:hover,
.footer-top-link:focus-visible {
  transform: translateY(-2px);
  color: var(--teal);
  border-color: rgba(54, 143, 139, 0.35);
  background: rgba(255, 255, 255, 0.94);
}

.footer-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 0.35rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(22, 15, 41, 0.08);
  font-size: 0.9rem;
  color: var(--taupe);
}

.footer-meta a:hover,
.footer-meta a:focus-visible {
  color: var(--teal);
}

.policy-page {
  padding-top: 5.5rem;
  padding-bottom: 2rem;
}

.policy-hero {
  padding: 1rem 0 0.5rem;
}

.policy-intro {
  max-width: 46rem;
  margin: 0 auto;
  text-align: left;
}

.policy-intro h1 {
  margin-top: 0;
  font-size: clamp(2.3rem, 5vw, 3.4rem);
  line-height: 1;
}

.policy-intro p {
  margin: 0.65rem 0 0;
  color: var(--muted);
  font-size: 0.98rem;
}

.policy-content-section {
  padding-top: 0.5rem;
}

.policy-card {
  max-width: 54rem;
  margin: 0 auto;
  padding: 0;
  border-radius: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.policy-section + .policy-section {
  margin-top: 1.4rem;
  padding-top: 1.4rem;
  border-top: 1px solid rgba(22, 15, 41, 0.08);
}

.policy-section h2 {
  font-family: "Outfit", sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  line-height: 1.1;
}

.policy-section p,
.policy-section li,
.policy-table {
  color: var(--muted);
  line-height: 1.75;
}

.policy-section p {
  margin: 0.7rem 0 0;
}

.policy-section a {
  color: var(--teal);
}

.policy-section a:hover,
.policy-section a:focus-visible {
  text-decoration: underline;
}

.policy-note {
  font-style: italic;
}

.policy-stack {
  display: grid;
  gap: 0.65rem;
  margin-top: 0.9rem;
}

.policy-stack p {
  margin: 0;
}

.policy-list {
  margin: 0.7rem 0 0;
  padding-left: 1.25rem;
}

.policy-list li + li {
  margin-top: 0.4rem;
}

.policy-table-wrap {
  margin-top: 0.75rem;
  overflow-x: auto;
}

.policy-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 720px;
  background: #fff;
}

.policy-table th,
.policy-table td {
  padding: 0.95rem 1rem;
  border: 1px solid rgba(22, 15, 41, 0.1);
  text-align: left;
  vertical-align: top;
}

.policy-table th {
  color: var(--ink);
  background: rgba(243, 223, 193, 0.35);
  font-weight: 700;
}

.form-modal {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: grid;
  place-items: center;
  padding: 1rem;
}

.form-modal[hidden] {
  display: none;
}

.form-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(22, 15, 41, 0.56);
  backdrop-filter: blur(8px);
}

.form-modal-dialog {
  position: relative;
  width: min(920px, 100%);
  max-height: calc(100vh - 2rem);
  border-radius: 28px;
  background: #fff;
  border: 1px solid rgba(22, 15, 41, 0.08);
  box-shadow: 0 30px 80px rgba(22, 15, 41, 0.28);
  overflow: hidden;
}

.form-modal-toolbar {
  display: flex;
  justify-content: flex-end;
  padding: 0.9rem 0.9rem 0;
  background: #fff;
}

.form-modal-close {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  border: 0;
  border-radius: 12px;
  background: rgba(22, 15, 41, 0.06);
  color: var(--navy);
  cursor: pointer;
}

.form-modal-close:hover,
.form-modal-close:focus-visible {
  background: rgba(54, 143, 139, 0.12);
  color: var(--teal);
}

.form-modal-frame {
  padding: 0.9rem 0.9rem 0.9rem;
  background: #fff;
}

.form-modal-frame iframe {
  display: block;
  width: 100%;
  min-height: min(72vh, 700px);
  border: 1px solid rgba(22, 15, 41, 0.12) !important;
  border-radius: 20px;
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  animation: reveal 800ms cubic-bezier(0.2, 1, 0.2, 1) forwards;
}

.delay-1 {
  animation-delay: 90ms;
}

.delay-2 {
  animation-delay: 180ms;
}

.delay-3 {
  animation-delay: 270ms;
}

.delay-4 {
  animation-delay: 360ms;
}

@keyframes reveal {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1100px) {
  .nav-shell {
    gap: 0.85rem;
  }

  .brand img {
    height: 34px;
  }

  .nav-actions {
    gap: 0.65rem;
  }

  .nav-actions .button {
    padding: 0.86rem 1.1rem;
    font-size: 0.92rem;
  }

  .hero-grid,
  .problem-grid,
  .audience-grid,
  .export-grid,
  .cta-grid {
    grid-template-columns: 1fr;
  }

  .why-layout {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .why-phone {
    order: -1;
  }

  .why-phone-shell {
    width: 180px;
  }

  .diff-table {
    grid-template-columns: 1fr;
  }

  .diff-col--before {
    border-right: none;
    border-bottom: 1px solid rgba(22, 15, 41, 0.08);
  }

  .flow-grid,
  .trust-grid,
  .history-board {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .breadth-split {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .hiw-row {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .hiw-row--flip {
    direction: ltr;
  }

  .hiw-num {
    font-size: 3.5rem;
  }

  .hiw-photo {
    height: 280px;
  }

  .hero-visual {
    min-height: 740px;
  }

  .phone {
    left: 4%;
  }

  .tablet {
    right: 6%;
  }
}

@media (max-width: 920px) {
  .site-header.scrolled {
    background: #fefcf8;
  }

  .nav-shell {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 0.9rem 1rem;
    padding: 0.9rem 0;
  }

  .brand {
    min-width: 0;
  }

  .brand img {
    height: 32px;
  }

  .nav-actions .button {
    padding: 0.82rem 1rem;
    font-size: 0.9rem;
    gap: 0.55rem;
  }

}

@media (max-width: 760px) {
  .site-header.scrolled {
    background: #fefcf8;
  }

  section {
    padding: 4rem 0;
  }

  .hero {
    padding-top: 2rem;
  }

  .hero-visual {
    min-height: auto;
  }

  .problem-grid {
    display: block;
  }

  .problem-grid > .section-heading {
    margin-bottom: 1.5rem;
  }

  .problem-grid > .scene-card {
    width: 100%;
    clear: both;
  }

  .phone {
    position: relative;
    top: auto;
    left: auto;
    width: 100%;
    max-width: 340px;
    margin: 0 auto;
  }

  .tablet {
    position: relative;
    right: auto;
    bottom: auto;
    width: 100%;
    max-width: 340px;
    margin: 1rem auto 0;
  }

  .mock-stack {
    position: relative;
    inset: auto;
    display: grid;
    align-content: start;
    gap: 1rem;
  }

  .flow-grid,
  .trust-grid,
  .history-board,
  .scene-grid {
    grid-template-columns: 1fr;
  }

  .hiw-steps {
    gap: 3rem;
  }

  .hiw-num {
    font-size: 3rem;
  }

  .nav-shell {
    grid-template-columns: 1fr auto;
    align-items: center;
  }

  .brand {
    justify-self: start;
  }

  .brand img {
    height: 30px;
  }

  .nav-actions {
    display: none;
  }

  .mobile-menu {
    display: block;
  }

  .hero-actions {
    width: 100%;
  }

  .stats-band {
    grid-template-columns: 1fr;
  }

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

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

  .policy-page {
    padding-top: 5rem;
  }

  .policy-card {
    padding: 0;
  }

  .policy-section + .policy-section {
    margin-top: 1.2rem;
    padding-top: 1.2rem;
  }

  .form-modal {
    padding: 0.75rem;
  }

  .form-modal-dialog {
    max-height: calc(100vh - 1.5rem);
    border-radius: 22px;
  }

  .form-modal-frame {
    padding: 0.75rem 0.75rem 0.75rem;
  }

  .form-modal-frame iframe {
    min-height: calc(100vh - 96px);
    border-radius: 16px;
  }

  .pet-portrait {
    min-height: 260px;
  }

  .pet-portrait .fa-dog {
    font-size: 5.5rem;
  }
}

@media (max-width: 560px) {
  .mobile-menu-panel {
    width: min(300px, calc(100vw - 2rem));
  }

  .form-modal-close {
    width: 36px;
    height: 36px;
  }
}
