:root {
  color-scheme: light;
  --brand: #5038f8;
  --brand-2: #7663ff;
  --brand-soft: #efedff;
  --ink: #17211d;
  --soft: rgba(23, 33, 29, 0.74);
  --muted: rgba(23, 33, 29, 0.58);
  --line: rgba(23, 33, 29, 0.14);
  --line-brand: rgba(80, 56, 248, 0.22);
  --paper: #ffffff;
  --bg: #f8f8fb;
  --bg-warm: #fff7ec;
  --amber: #edae45;
  --coral: #f47663;
  --green: #27b786;
  --shadow: 0 22px 70px rgba(50, 42, 32, 0.14);
  --radius: 8px;
  --max: 1180px;
  --nav-h: 78px;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  overflow-x: hidden;
  scroll-behavior: smooth;
}

[id] {
  scroll-margin-top: calc(var(--nav-h) + 18px);
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--ink);
  background:
    radial-gradient(circle at 16% 10%, rgba(80, 56, 248, 0.12), transparent 25rem),
    radial-gradient(circle at 86% 26%, rgba(237, 174, 69, 0.14), transparent 23rem),
    linear-gradient(180deg, var(--bg) 0%, #ffffff 54%, #f7f7fb 100%);
  overflow-x: hidden;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  content: "";
  background-image:
    radial-gradient(circle, rgba(80, 56, 248, 0.09) 1px, transparent 1.4px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0));
  background-size: 28px 28px, 100% 100%;
  mask-image: linear-gradient(to bottom, black, transparent 72%);
}

body::after {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  background: linear-gradient(
    120deg,
    transparent 0%,
    rgba(80, 56, 248, 0.07) 44%,
    rgba(237, 174, 69, 0.07) 52%,
    transparent 62%
  );
  transform: translateX(-72%);
  animation: softSweep 12s ease-in-out infinite;
}

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

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

button,
input,
textarea {
  font: inherit;
}

.site-shell {
  min-height: 100vh;
  max-width: 100%;
  overflow-x: clip;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  height: var(--nav-h);
  border-bottom: 1px solid rgba(23, 33, 29, 0.1);
  background: rgba(248, 248, 251, 0.86);
  box-shadow: 0 12px 36px rgba(50, 42, 32, 0.08);
  backdrop-filter: blur(20px);
}

.nav {
  width: min(var(--max), calc(100% - 32px));
  height: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  min-width: max-content;
  font-weight: 900;
}

.brand-mark {
  width: 42px;
  height: 42px;
  padding: 7px;
  border: 1px solid rgba(80, 56, 248, 0.3);
  background: #ffffff;
  box-shadow: 0 8px 22px rgba(80, 56, 248, 0.12);
  object-fit: contain;
}

.brand-text {
  display: grid;
  gap: 1px;
}

.brand-text span:first-child {
  font-size: 1rem;
}

.brand-text span:last-child {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  color: var(--soft);
  font-size: 0.9rem;
  font-weight: 800;
}

.nav-links a {
  padding: 10px 12px;
  border: 1px solid transparent;
  border-radius: var(--radius);
}

.nav-links a:hover,
.nav-links a:focus-visible,
.nav-links a[aria-current="page"] {
  border-color: rgba(80, 56, 248, 0.22);
  background: rgba(80, 56, 248, 0.07);
  color: #2f276a;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.menu-button {
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 0;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.78);
  display: none;
  place-items: center;
  cursor: pointer;
}

.btn {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 12px 16px;
  border: 1px solid var(--line-brand);
  border-radius: var(--radius);
  color: var(--ink);
  background: rgba(255, 255, 255, 0.78);
  cursor: pointer;
  font-weight: 900;
  letter-spacing: 0;
  box-shadow: 0 10px 24px rgba(50, 42, 32, 0.06);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease,
    box-shadow 180ms ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(80, 56, 248, 0.46);
  background: var(--brand-soft);
  box-shadow: 0 18px 42px rgba(80, 56, 248, 0.12);
}

.btn-primary {
  color: #ffffff;
  border-color: transparent;
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  box-shadow: 0 16px 38px rgba(80, 56, 248, 0.24);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  color: #ffffff;
  border-color: transparent;
  background: linear-gradient(135deg, #3f2de0, #8a79ff);
}

.btn-secondary {
  color: #2f276a;
  background: rgba(80, 56, 248, 0.07);
}

.btn svg,
.menu-button svg {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
}

.hero,
.page-hero {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(248, 248, 251, 0.99) 0%, rgba(248, 248, 251, 0.88) 46%, rgba(248, 248, 251, 0.34) 100%),
    linear-gradient(0deg, var(--bg) 0%, rgba(248, 248, 251, 0) 38%),
    var(--hero-image, none) center right / cover;
}

.hero::before,
.page-hero::before {
  position: absolute;
  inset: 0;
  content: "";
  background-image:
    radial-gradient(circle at 18% 72%, rgba(80, 56, 248, 0.1), transparent 20rem),
    radial-gradient(circle at 76% 28%, rgba(237, 174, 69, 0.16), transparent 18rem);
  animation: heroGlow 10s ease-in-out infinite;
}

.hero {
  min-height: 92svh;
  padding: calc(var(--nav-h) + 58px) 0 72px;
  display: grid;
  align-items: end;
  --hero-image: url("assets/woofwatch/hero-kennel-dog.jpg");
}

.page-hero {
  padding: calc(var(--nav-h) + 72px) 0 82px;
  min-height: 72svh;
}

.hero-inner,
.section-inner {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
}

.hero-inner,
.page-hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(330px, 0.72fr);
  align-items: center;
  gap: 34px;
}

.page-hero-inner {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
}

.eyebrow {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 20px;
  padding: 8px 11px;
  border: 1px solid rgba(80, 56, 248, 0.24);
  color: var(--brand);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 10px 24px rgba(80, 56, 248, 0.08);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.13em;
}

.eyebrow-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--brand);
  box-shadow: 0 0 0 5px rgba(80, 56, 248, 0.12);
  animation: pulse 1.8s ease-in-out infinite;
}

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

h1 {
  max-width: 880px;
  color: var(--ink);
  font-size: clamp(4rem, 10vw, 9rem);
  line-height: 0.86;
  letter-spacing: 0;
  text-wrap: balance;
}

.page-hero h1 {
  font-size: clamp(3.1rem, 7vw, 6.8rem);
}

h2 {
  max-width: 860px;
  color: var(--ink);
  font-size: clamp(2.1rem, 5vw, 5.1rem);
  line-height: 0.98;
  letter-spacing: 0;
  text-wrap: balance;
}

h3 {
  color: var(--ink);
  font-size: 1.22rem;
  line-height: 1.15;
}

.hero-kicker,
.lead {
  color: var(--soft);
  line-height: 1.6;
}

.hero-kicker {
  max-width: 720px;
  margin-top: 24px;
  font-size: clamp(1.08rem, 2vw, 1.42rem);
}

.lead {
  font-size: clamp(1rem, 1.5vw, 1.18rem);
}

.audience-choice {
  margin-top: 34px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  max-width: 720px;
}

.choice-prompt {
  grid-column: 1 / -1;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.audience-option,
.feature,
.step,
.faq-item,
.interest-card,
.search-card,
.stat,
.mini-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 18px 50px rgba(50, 42, 32, 0.08);
  backdrop-filter: blur(16px);
}

.audience-option {
  min-height: 154px;
  padding: 18px;
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 14px;
  align-items: start;
  border-color: rgba(80, 56, 248, 0.16);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease,
    box-shadow 180ms ease;
}

.audience-option:hover,
.audience-option:focus-visible {
  transform: translateY(-3px);
  border-color: rgba(80, 56, 248, 0.32);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 22px 54px rgba(80, 56, 248, 0.12);
}

.audience-icon,
.feature-icon,
.parent-list svg,
.icon-tile {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  color: var(--brand);
  border: 1px solid rgba(80, 56, 248, 0.22);
  background: rgba(80, 56, 248, 0.08);
}

.audience-copy {
  display: grid;
  gap: 7px;
}

.audience-copy strong {
  color: var(--ink);
  font-size: 1.08rem;
  line-height: 1.1;
}

.audience-copy span,
.feature p,
.step p,
.faq-panel,
.tiny-copy,
.mini-card p {
  color: var(--muted);
  line-height: 1.58;
}

.audience-cta {
  margin-top: 3px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--brand);
  font-size: 0.84rem;
  font-weight: 900;
}

.audience-cta svg {
  width: 16px;
  height: 16px;
}

.hero-stats {
  margin-top: 34px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 720px;
  overflow: hidden;
}

.stat {
  padding: 18px;
  border-radius: 0;
  border-width: 0 1px 0 0;
}

.stat:last-child {
  border-right: 0;
}

.stat strong {
  display: block;
  color: var(--ink);
  font-size: 1.1rem;
}

.stat span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.35;
}

.device-preview {
  align-self: center;
  border: 1px solid rgba(80, 56, 248, 0.2);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
  overflow: hidden;
  transform: translateY(10px);
  animation: floatPanel 7s ease-in-out infinite;
}

.preview-top {
  min-height: 54px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 16px;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.72);
}

.window-dots {
  display: flex;
  gap: 7px;
}

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

.window-dots span:nth-child(1) {
  background: var(--coral);
}

.window-dots span:nth-child(2) {
  background: var(--amber);
}

.window-dots span:nth-child(3) {
  background: var(--brand);
}

.preview-label {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--brand);
  font-size: 0.75rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.preview-feed {
  position: relative;
  aspect-ratio: 4 / 3;
  min-height: 270px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(248, 248, 251, 0.06), rgba(248, 248, 251, 0.74)),
    url("assets/woofwatch/customer-dog.jpg")
      center / cover;
}

.preview-feed::before {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(
    115deg,
    transparent 0%,
    rgba(255, 255, 255, 0.34) 42%,
    rgba(80, 56, 248, 0.12) 50%,
    transparent 62%
  );
  animation: softFeed 7s ease-in-out infinite;
}

.soft-line {
  position: absolute;
  inset: 0 0 auto;
  height: 44px;
  background: linear-gradient(90deg, transparent, rgba(80, 56, 248, 0.18), transparent);
  filter: blur(5px);
  opacity: 0.8;
  animation: scanLine 5s ease-in-out infinite alternate;
}

.feed-badge {
  position: absolute;
  left: 16px;
  bottom: 16px;
  display: grid;
  gap: 5px;
  padding: 12px;
  border: 1px solid rgba(23, 33, 29, 0.12);
  color: var(--ink);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 16px 36px rgba(50, 42, 32, 0.12);
}

.feed-badge strong {
  font-size: 0.9rem;
}

.feed-badge span {
  color: var(--muted);
  font-size: 0.78rem;
}

.preview-controls {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  padding: 16px;
}

.signal {
  display: grid;
  gap: 9px;
}

.signal-row {
  display: grid;
  grid-template-columns: 82px 1fr;
  align-items: center;
  gap: 10px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 900;
}

.bar {
  height: 8px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(23, 33, 29, 0.1);
}

.bar span {
  display: block;
  width: var(--w);
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--brand), #8f7cff, var(--amber));
  animation: barBreathe 3s ease-in-out infinite;
}

.paw {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(80, 56, 248, 0.22);
  color: var(--brand);
  background: rgba(80, 56, 248, 0.08);
}

.section {
  padding: 92px 0;
}

.section-alt {
  background: rgba(80, 56, 248, 0.035);
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(260px, 0.5fr);
  align-items: end;
  gap: 32px;
  margin-bottom: 34px;
}

.section-label {
  margin-bottom: 12px;
  color: var(--brand);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(300px, 0.65fr);
  gap: 24px;
  align-items: stretch;
}

.product-frame,
.device-cluster {
  min-height: 520px;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 20% 18%, rgba(80, 56, 248, 0.12), transparent 18rem),
    radial-gradient(circle at 82% 78%, rgba(237, 174, 69, 0.13), transparent 18rem),
    rgba(255, 255, 255, 0.64);
  box-shadow: 0 18px 50px rgba(50, 42, 32, 0.08);
}

.product-frame::before {
  position: absolute;
  inset: 26px;
  content: "";
  border: 1px solid rgba(80, 56, 248, 0.1);
}

.product-frame img {
  position: absolute;
  width: min(68%, 560px);
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) rotate(-2deg);
  filter: drop-shadow(0 26px 56px rgba(0, 0, 0, 0.18));
}

.phone {
  position: absolute;
  width: 42%;
  min-width: 170px;
  max-width: 240px;
  border: 10px solid #101314;
  border-radius: 28px;
  background: #101314;
  box-shadow: 0 26px 80px rgba(0, 0, 0, 0.24);
  overflow: hidden;
}

.phone img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 18px;
}

.phone-one {
  left: 12%;
  top: 58px;
  transform: rotate(-7deg);
  animation: phoneFloatOne 8s ease-in-out infinite;
}

.phone-two {
  right: 13%;
  bottom: 48px;
  transform: rotate(6deg);
  animation: phoneFloatTwo 8s ease-in-out infinite;
}

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

.feature {
  min-height: 226px;
  padding: 20px;
  display: grid;
  align-content: space-between;
  gap: 24px;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease,
    box-shadow 180ms ease;
}

.feature:hover {
  transform: translateY(-4px);
  border-color: rgba(80, 56, 248, 0.28);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 22px 54px rgba(80, 56, 248, 0.1);
}

.journey {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  counter-reset: steps;
}

.step {
  min-height: 244px;
  padding: 20px;
  position: relative;
  overflow: hidden;
}

.step::before {
  counter-increment: steps;
  content: "0" counter(steps);
  display: block;
  margin-bottom: 34px;
  color: rgba(80, 56, 248, 0.78);
  font-size: 0.86rem;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.step::after {
  position: absolute;
  right: 18px;
  top: 20px;
  width: 46px;
  height: 46px;
  content: "";
  border: 1px solid rgba(80, 56, 248, 0.18);
  transform: rotate(45deg);
}

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

.parent-list li {
  display: grid;
  grid-template-columns: 36px 1fr;
  align-items: start;
  gap: 12px;
  color: var(--soft);
}

.parent-list svg {
  width: 36px;
  height: 36px;
  padding: 8px;
}

.search-card {
  border-color: rgba(80, 56, 248, 0.18);
}

.search-head {
  padding: 20px;
  border-bottom: 1px solid var(--line);
}

.search-head h3 {
  margin: 0 0 8px;
}

.search-form,
.interest-form {
  display: grid;
  gap: 12px;
}

.search-form {
  padding: 20px;
}

.input-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
}

label {
  display: grid;
  gap: 8px;
  color: var(--soft);
  font-size: 0.86rem;
  font-weight: 900;
}

input,
textarea {
  width: 100%;
  border: 1px solid rgba(23, 33, 29, 0.16);
  border-radius: 0;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.78);
  padding: 13px;
  font-weight: 600;
  line-height: 1.35;
  outline: 0;
  transition:
    border-color 160ms ease,
    background 160ms ease,
    box-shadow 160ms ease;
}

textarea {
  min-height: 96px;
  resize: vertical;
}

input:focus,
textarea:focus {
  border-color: rgba(80, 56, 248, 0.64);
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(80, 56, 248, 0.12);
}

.result {
  min-height: 104px;
  padding: 16px;
  border: 1px solid var(--line);
  background: rgba(80, 56, 248, 0.06);
}

.result strong {
  display: block;
  margin-bottom: 6px;
}

.result p {
  color: var(--muted);
  line-height: 1.5;
}

.interest-card {
  display: none;
  padding: 20px;
}

.interest-card.is-visible {
  display: block;
}

.interest-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.interest-form {
  margin-top: 16px;
}

.check-row {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 10px;
  align-items: start;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.45;
}

.check-row input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--brand);
}

.form-status {
  min-height: 24px;
  color: var(--brand);
  font-weight: 900;
  line-height: 1.45;
}

.faq-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(300px, 0.48fr);
  gap: 24px;
  align-items: start;
}

.faq-list {
  display: grid;
  gap: 10px;
}

.faq-item {
  overflow: hidden;
}

.faq-trigger {
  width: 100%;
  min-height: 62px;
  padding: 17px 18px;
  border: 0;
  color: var(--ink);
  background: transparent;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  cursor: pointer;
  text-align: left;
  font-weight: 900;
}

.faq-trigger svg {
  width: 18px;
  height: 18px;
  color: var(--brand);
  flex: 0 0 18px;
  transition: transform 180ms ease;
}

.faq-item.is-open .faq-trigger svg {
  transform: rotate(45deg);
}

.faq-panel {
  display: grid;
  grid-template-rows: 0fr;
  color: var(--muted);
  line-height: 1.58;
  transition: grid-template-rows 220ms ease;
}

.faq-item.is-open .faq-panel {
  grid-template-rows: 1fr;
}

.faq-panel > div {
  overflow: hidden;
}

.faq-panel p {
  padding: 0 18px 18px;
}

.mini-card {
  padding: 20px;
}

.mini-card h3 {
  margin-bottom: 8px;
}

.showcase-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.62fr) minmax(320px, 0.48fr);
  gap: 24px;
  align-items: stretch;
}

.loop-panel,
.calculator,
.message-tool {
  border: 1px solid rgba(80, 56, 248, 0.18);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 18% 16%, rgba(80, 56, 248, 0.1), transparent 16rem),
    rgba(255, 255, 255, 0.82);
  box-shadow: 0 22px 70px rgba(50, 42, 32, 0.1);
  backdrop-filter: blur(16px);
}

.loop-panel {
  padding: 22px;
  display: grid;
  gap: 12px;
}

.loop-node {
  display: grid;
  grid-template-columns: 44px 1fr auto;
  gap: 14px;
  align-items: center;
  padding: 14px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.72);
}

.loop-node strong,
.result-metric strong {
  color: var(--ink);
}

.loop-node span,
.estimate-note {
  color: var(--muted);
  line-height: 1.5;
}

.loop-badge {
  padding: 7px 9px;
  border: 1px solid rgba(80, 56, 248, 0.18);
  color: var(--brand);
  background: rgba(80, 56, 248, 0.08);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.metric-stack {
  display: grid;
  gap: 12px;
}

.metric-card {
  min-height: 150px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 18px 50px rgba(50, 42, 32, 0.08);
}

.metric-value {
  display: block;
  margin: 12px 0 8px;
  color: var(--brand);
  font-size: clamp(2rem, 4vw, 3.6rem);
  font-weight: 950;
  line-height: 0.95;
}

.calculator {
  padding: 22px;
}

.calc-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(300px, 0.48fr);
  gap: 18px;
  align-items: stretch;
}

.calc-controls {
  display: grid;
  gap: 14px;
}

.calc-field {
  padding: 14px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.62);
}

.range-row {
  display: grid;
  grid-template-columns: 1fr 88px;
  gap: 12px;
  align-items: center;
  margin-top: 10px;
}

.currency-input {
  min-height: 48px;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 4px;
  padding: 0 0 0 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #f9faf6;
}

.currency-input span {
  color: var(--muted);
  font-weight: 950;
}

.currency-input input {
  min-height: 46px;
  padding-left: 4px;
  border: 0;
  background: transparent;
}

.currency-input:focus-within {
  border-color: rgba(78, 55, 246, 0.42);
  box-shadow: 0 0 0 4px rgba(78, 55, 246, 0.09);
}

input[type="range"] {
  padding: 0;
  accent-color: var(--brand);
}

.calc-results {
  display: grid;
  gap: 12px;
}

.result-metric {
  padding: 18px;
  border: 1px solid rgba(80, 56, 248, 0.18);
  background: rgba(80, 56, 248, 0.06);
}

.result-metric span {
  display: block;
  margin-top: 6px;
  color: var(--brand);
  font-size: clamp(1.8rem, 4vw, 3.2rem);
  font-weight: 950;
  line-height: 1;
}

.estimate-note {
  padding: 14px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.62);
}

.interface-stack,
.render-grid {
  display: grid;
  gap: 24px;
}

.interface-render {
  display: grid;
  gap: 16px;
}

.interface-render-large {
  grid-template-columns: minmax(240px, 0.35fr) minmax(0, 0.65fr);
  align-items: center;
}

.render-copy {
  max-width: 520px;
}

.render-copy h3 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(1.7rem, 3vw, 3rem);
  line-height: 0.98;
  letter-spacing: 0;
}

.render-copy p:not(.section-label) {
  margin: 16px 0 0;
  color: var(--muted);
  line-height: 1.6;
}

.device-shell {
  position: relative;
  padding: 10px 10px 18px;
  border: 1px solid rgba(23, 33, 29, 0.2);
  border-radius: 14px;
  background:
    linear-gradient(180deg, #20222a, #111318),
    #15171c;
  box-shadow:
    0 34px 90px rgba(23, 33, 29, 0.2),
    inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.device-toolbar {
  min-height: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 0 8px 8px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.72rem;
  font-weight: 800;
}

.app-canvas {
  min-height: 600px;
  display: grid;
  grid-template-columns: minmax(168px, 0.24fr) minmax(0, 1fr);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  color: #171b1f;
  background: #eef1f7;
}

.app-canvas-compact {
  min-height: 460px;
  grid-template-columns: minmax(142px, 0.3fr) minmax(0, 1fr);
}

.app-sidebar {
  min-width: 0;
  padding: 16px 14px;
  border-right: 1px solid rgba(23, 33, 29, 0.12);
  background: #f7f8fc;
}

.app-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  color: #111318;
  font-size: 1rem;
  font-weight: 950;
  text-transform: uppercase;
}

.app-logo svg {
  width: 26px;
  height: 26px;
  padding: 4px;
  color: var(--brand);
  border: 1px solid rgba(80, 56, 248, 0.28);
  background: #ffffff;
}

.app-profile {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  margin-bottom: 18px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(23, 33, 29, 0.12);
}

.kennel-avatar {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 2px solid var(--brand);
  border-radius: 8px;
  color: #4c9c4a;
  background: #ffffff;
}

.kennel-avatar svg {
  width: 24px;
  height: 24px;
}

.app-profile strong,
.app-profile span {
  display: block;
}

.app-profile strong {
  font-size: 0.82rem;
  line-height: 1.15;
}

.app-profile span {
  color: #66707a;
  font-size: 0.72rem;
  font-weight: 800;
  line-height: 1.25;
  overflow-wrap: anywhere;
}

.app-nav-mock {
  display: grid;
  gap: 6px;
  color: #2c3036;
  font-size: 0.76rem;
  font-weight: 850;
}

.app-nav-mock span {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 10px;
  border-radius: 7px;
}

.app-nav-mock .is-active {
  color: #241d6c;
  background: rgba(80, 56, 248, 0.22);
}

.app-nav-mock svg,
.app-button-mock svg,
.stay-row svg,
.app-info-pill svg {
  width: 16px;
  height: 16px;
  flex: 0 0 16px;
}

.app-main {
  min-width: 0;
  padding: 20px;
}

.app-main-head,
.app-workspace {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.56fr);
  gap: 18px;
}

.app-main-head {
  align-items: start;
  margin-bottom: 18px;
}

.app-main h4,
.app-panel h5 {
  margin: 0;
  color: #15191e;
}

.app-main h4 {
  font-size: 1.55rem;
  line-height: 1;
}

.app-main p {
  margin: 7px 0 0;
  color: #65707a;
  font-size: 0.86rem;
  font-weight: 750;
}

.app-actions-mock {
  display: flex;
  justify-content: flex-end;
  gap: 8px;
  flex-wrap: wrap;
}

.app-button-mock {
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 12px;
  border-radius: 999px;
  color: #ffffff;
  font-size: 0.78rem;
  font-weight: 900;
  white-space: nowrap;
}

.app-button-primary {
  background: var(--brand);
}

.app-button-green {
  background: #65cdbd;
}

.app-stat-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 18px;
}

.app-stat,
.app-panel,
.profit-banner,
.package-card,
.window-card {
  border: 1px solid rgba(23, 33, 29, 0.1);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 12px 30px rgba(23, 33, 29, 0.06);
}

.app-stat {
  min-height: 92px;
  padding: 14px;
  display: grid;
  align-content: center;
  gap: 8px;
}

.app-stat span {
  color: #65707a;
  font-size: 0.78rem;
  font-weight: 850;
}

.app-stat strong {
  color: #111318;
  font-size: 1.45rem;
  line-height: 1;
}

.status-good {
  color: #4f9e95 !important;
  font-size: 1rem !important;
}

.app-panel {
  min-width: 0;
  padding: 16px;
}

.app-panel h5 {
  margin-bottom: 12px;
  font-size: 1rem;
}

.stay-list {
  display: grid;
  gap: 10px;
}

.stay-row {
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px;
  border: 1px solid rgba(23, 33, 29, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
}

.stay-row strong,
.stay-row span,
.stay-row small {
  display: block;
}

.stay-row strong {
  font-size: 0.96rem;
}

.stay-row span,
.stay-row small {
  color: #65707a;
  font-size: 0.74rem;
  font-weight: 800;
}

.stay-row small {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-top: 3px;
}

.live-preview {
  min-height: 196px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 8px;
  color: #ffffff;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent),
    #1d1d21;
}

.live-preview span {
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.24);
  font-size: 0.82rem;
  font-weight: 900;
}

.live-footer {
  margin-top: 10px;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: #65707a;
  font-size: 0.78rem;
  font-weight: 850;
}

.live-footer strong {
  color: #15191e;
}

.access-summary {
  margin-top: 18px;
}

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

.detail-grid span {
  padding: 10px;
  border: 1px solid rgba(23, 33, 29, 0.1);
  border-radius: 8px;
  color: #15191e;
  background: #f7f8fc;
  font-size: 0.8rem;
  font-weight: 900;
}

.detail-grid strong {
  display: block;
  margin-bottom: 4px;
  color: #65707a;
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.laptop-base {
  width: 70%;
  height: 12px;
  margin: 8px auto -8px;
  border-radius: 0 0 18px 18px;
  background: linear-gradient(180deg, #353944, #17191f);
}

.render-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.monitor-shell {
  padding-bottom: 10px;
}

.monitor-stand {
  width: 64px;
  height: 34px;
  margin: 8px auto 0;
  background: linear-gradient(180deg, #20232a, #111318);
}

.monitor-base {
  width: 148px;
  height: 10px;
  margin: 0 auto -2px;
  border-radius: 999px;
  background: #111318;
}

.billing-main,
.windows-main {
  display: grid;
  align-content: start;
  gap: 14px;
}

.profit-banner {
  padding: 16px;
  text-align: center;
}

.profit-banner span,
.profit-banner small {
  display: block;
  color: #65707a;
  font-weight: 850;
}

.profit-banner strong {
  display: block;
  margin: 7px 0 4px;
  color: var(--brand);
  font-size: clamp(2rem, 4vw, 3.1rem);
  line-height: 1;
}

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

.package-card {
  min-height: 134px;
  padding: 14px;
  display: grid;
  gap: 4px;
}

.package-card span,
.package-card small {
  color: #65707a;
  font-size: 0.76rem;
  font-weight: 900;
}

.package-card strong {
  margin-top: 12px;
  color: #15191e;
  font-size: 1.65rem;
  line-height: 1;
}

.package-card b {
  margin-top: 2px;
  font-size: 0.88rem;
}

.package-purple {
  background: #f0e6ff;
}

.package-blue {
  background: #e6f2ff;
}

.package-coral {
  background: #ffe8e6;
}

.window-card {
  padding: 14px;
}

.window-card strong {
  color: #15191e;
}

.time-pair {
  display: grid;
  gap: 8px;
  margin: 12px 0;
}

.time-pair span {
  padding: 10px;
  border: 1px solid rgba(80, 56, 248, 0.12);
  border-radius: 8px;
  color: #15191e;
  background: #f7f8fc;
  font-size: 0.9rem;
  font-weight: 950;
}

.window-card small {
  color: #65707a;
  font-weight: 850;
}

.app-info-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  padding: 12px 14px;
  border-radius: 8px;
  color: var(--brand);
  background: #e8f3ff;
  font-size: 0.78rem;
  font-weight: 900;
}

.message-tool {
  padding: 22px;
}

.message-form {
  display: grid;
  gap: 12px;
}

.message-tool textarea {
  min-height: 250px;
}

.message-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.copy-status {
  min-height: 24px;
  color: var(--brand);
  font-weight: 900;
}

.contact-band {
  padding: 42px;
  border: 1px solid rgba(80, 56, 248, 0.18);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(80, 56, 248, 0.12), rgba(237, 174, 69, 0.12)),
    rgba(255, 255, 255, 0.78);
  box-shadow: 0 22px 70px rgba(50, 42, 32, 0.1);
}

.contact-band h3 {
  margin: 0 0 12px;
  font-size: clamp(1.8rem, 3vw, 3.1rem);
  line-height: 1;
}

.contact-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.footer {
  padding: 28px 0 40px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  background: rgba(255, 255, 255, 0.42);
}

.footer-inner {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 0.92rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(220px, 0.9fr) minmax(280px, 1.3fr) minmax(210px, 0.7fr);
  align-items: start;
}

.footer-grid > div {
  display: grid;
  gap: 8px;
}

.footer-grid strong {
  color: var(--ink);
  font-size: 1rem;
}

.footer-grid a {
  color: var(--soft);
  font-weight: 820;
}

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

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 700ms ease,
    transform 700ms ease;
}

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

@keyframes softSweep {
  0%,
  28% {
    transform: translateX(-72%);
    opacity: 0;
  }
  50% {
    opacity: 0.55;
  }
  100% {
    transform: translateX(72%);
    opacity: 0;
  }
}

@keyframes heroGlow {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
    opacity: 0.78;
  }
  50% {
    transform: translate3d(0, -12px, 0);
    opacity: 1;
  }
}

@keyframes questionIn {
  from {
    opacity: 0;
    transform: translateX(18px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes questionOut {
  from {
    opacity: 1;
    transform: translateX(0);
  }

  to {
    opacity: 0;
    transform: translateX(-18px);
  }
}

@keyframes questionInBack {
  from {
    opacity: 0;
    transform: translateX(-18px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes questionOutBack {
  from {
    opacity: 1;
    transform: translateX(0);
  }

  to {
    opacity: 0;
    transform: translateX(18px);
  }
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(0.82);
    opacity: 0.55;
  }
  50% {
    transform: scale(1.08);
    opacity: 1;
  }
}

@keyframes floatPanel {
  0%,
  100% {
    transform: translateY(10px);
  }
  50% {
    transform: translateY(-6px);
  }
}

@keyframes softFeed {
  0%,
  24% {
    transform: translateX(-80%);
    opacity: 0;
  }
  52% {
    opacity: 1;
  }
  100% {
    transform: translateX(80%);
    opacity: 0;
  }
}

@keyframes scanLine {
  from {
    transform: translateY(-18px);
  }
  to {
    transform: translateY(280px);
  }
}

@keyframes barBreathe {
  0%,
  100% {
    opacity: 0.72;
  }
  50% {
    opacity: 1;
  }
}

@keyframes phoneFloatOne {
  0%,
  100% {
    transform: translateY(0) rotate(-7deg);
  }
  50% {
    transform: translateY(-13px) rotate(-4deg);
  }
}

@keyframes phoneFloatTwo {
  0%,
  100% {
    transform: translateY(0) rotate(6deg);
  }
  50% {
    transform: translateY(13px) rotate(3deg);
  }
}

@media (max-width: 980px) {
  .menu-button {
    display: grid;
  }

  .nav-links {
    position: fixed;
    inset: var(--nav-h) 16px auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(248, 248, 251, 0.97);
    box-shadow: var(--shadow);
  }

  .nav-links.is-open {
    display: flex;
  }

  .nav-links a {
    padding: 14px 12px;
  }

  .nav-actions .btn {
    display: none;
  }

  .hero,
  .page-hero {
    min-height: auto;
    padding-bottom: 48px;
    background-position: 64% center;
  }

  .hero-inner,
  .page-hero-inner,
  .section-head,
  .split,
  .faq-grid,
  .showcase-grid,
  .calc-grid,
  .interface-render-large,
  .render-grid,
  .app-main-head,
  .app-workspace {
    grid-template-columns: 1fr;
  }

  .app-stat-grid,
  .detail-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .package-grid,
  .window-grid {
    grid-template-columns: 1fr;
  }

  .device-preview {
    max-width: 560px;
    width: 100%;
  }

  .feature-grid,
  .journey,
  .mini-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .internal-link-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .case-study-card-grid {
    grid-template-columns: 1fr;
  }

  .case-study-intro,
  .case-study-media-grid {
    grid-template-columns: 1fr;
  }

  .case-phone-frame {
    justify-self: start;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 74px 0;
  }
}

@media (max-width: 820px) {
  .internal-link-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .internal-link-grid a,
  .internal-link-grid .case-study-card-disabled {
    min-height: auto;
    align-content: start;
    gap: 10px;
    padding: 18px;
  }

  .guide-link-grid a {
    gap: 12px;
    padding: 12px;
  }

  .guide-card-media {
    aspect-ratio: 1.8;
  }

  .guide-card-copy {
    padding: 0 4px 5px;
  }

  .internal-link-grid.case-study-card-grid a,
  .internal-link-grid.case-study-card-grid .case-study-card-disabled {
    min-height: auto;
    gap: 14px;
  }

  .internal-link-grid strong,
  .internal-link-grid .case-study-card-disabled strong {
    font-size: 1.05rem;
    line-height: 1.34;
  }

  .case-study-card-logo {
    min-height: 136px;
    padding: 18px;
  }

  .case-study-card-logo img {
    max-height: 104px;
  }
}

@media (max-width: 680px) {
  :root {
    --nav-h: 70px;
  }

  .nav,
  .hero-inner,
  .page-hero-inner,
  .section-inner,
  .footer-inner {
    width: min(var(--max), calc(100vw - 56px));
  }

  .brand {
    min-width: 0;
  }

  .brand-text span:last-child {
    display: none;
  }

  .hero,
  .page-hero {
    padding-top: calc(var(--nav-h) + 38px);
    background:
      linear-gradient(180deg, rgba(248, 248, 251, 0.78), rgba(248, 248, 251, 0.96) 50%, var(--bg) 100%),
      var(--hero-image, none) center top / cover;
  }

  h1,
  .page-hero h1 {
    max-width: 100%;
    font-size: clamp(3rem, 18vw, 5.2rem);
  }

  .hero-kicker {
    max-width: 100%;
    font-size: 1.02rem;
  }

  .eyebrow {
    max-width: 100%;
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    white-space: normal;
  }

  .hero-inner,
  .page-hero-inner {
    display: block;
  }

  .audience-choice,
  .hero-stats,
  .feature-grid,
  .journey,
  .input-row,
  .interest-grid,
  .mini-grid,
  .range-row,
  .contact-links,
  .app-canvas,
  .app-stat-grid,
  .detail-grid,
  .package-grid,
  .window-grid,
  .internal-link-grid,
  .seo-split,
  .case-study-facts {
    grid-template-columns: 1fr;
  }

  .case-study-hero-card {
    margin-top: 28px;
  }

  .case-logo-wrap {
    min-height: 160px;
  }

  .case-study-card-logo {
    min-height: 124px;
  }

  .internal-link-grid a,
  .internal-link-grid .case-study-card-disabled {
    min-height: auto;
    padding: 18px 16px;
  }

  .footer-links {
    display: grid;
    grid-template-columns: 1fr;
  }

  .device-shell {
    padding: 8px;
    border-radius: 12px;
  }

  .device-toolbar > span {
    display: none;
  }

  .app-sidebar {
    display: none;
  }

  .app-main {
    padding: 14px;
  }

  .app-main h4 {
    font-size: 1.35rem;
  }

  .app-actions-mock {
    justify-content: flex-start;
  }

  .live-footer,
  .detail-grid {
    display: grid;
  }

  .app-info-pill {
    width: 100%;
  }

  .loop-node {
    grid-template-columns: 44px 1fr;
  }

  .loop-badge {
    width: fit-content;
    grid-column: 2;
  }

  .message-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .audience-option {
    min-height: 0;
  }

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

  .stat:last-child {
    border-bottom: 0;
  }

  .device-preview {
    margin-top: 38px;
  }

  .preview-feed {
    min-height: 238px;
  }

  .preview-label {
    font-size: 0.68rem;
    letter-spacing: 0.08em;
  }

  .btn,
  .search-card,
  .interest-card,
  .contact-band {
    width: 100%;
    min-width: 0;
    max-width: 100%;
  }

  .product-frame,
  .device-cluster {
    min-height: 420px;
  }

  .product-frame img {
    width: 86%;
  }

  .phone {
    width: 48%;
    min-width: 142px;
  }

  .contact-band {
    padding: 24px;
  }

  .section {
    padding: 58px 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 1ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* Native self-hosted Woof Watch funnel */
.native-home {
  --brand: #4e37f6;
  --brand-2: #129783;
  --brand-soft: #f0edff;
  --ink: #151917;
  --soft: rgba(21, 25, 23, 0.78);
  --muted: rgba(21, 25, 23, 0.6);
  --line: rgba(21, 25, 23, 0.14);
  --line-brand: rgba(78, 55, 246, 0.24);
  --paper: #ffffff;
  --bg: #f7f8f2;
  --bg-warm: #fff3de;
  --amber: #f0b449;
  --coral: #f26c55;
  --green: #129783;
  --shadow: 0 22px 64px rgba(34, 42, 34, 0.14);
  background: linear-gradient(180deg, #f7f8f2 0%, #ffffff 52%, #f3f7ef 100%);
}

.native-home::before,
.native-home::after {
  display: none;
}

.native-home .site-header {
  background: rgba(247, 248, 242, 0.9);
}

.native-brand {
  width: min(238px, 45vw);
  min-width: 0;
  overflow: hidden;
}

.brand-logo-wide {
  width: 100%;
  height: 34px;
  object-fit: contain;
}

.native-home .nav-links a:hover,
.native-home .nav-links a:focus-visible {
  border-color: rgba(18, 151, 131, 0.24);
  background: rgba(18, 151, 131, 0.08);
  color: #0f5f55;
}

.btn-large {
  min-height: 52px;
  padding-inline: 20px;
}

.native-home .btn-primary {
  background: linear-gradient(135deg, #151917, #4e37f6);
}

.native-home .btn-primary:hover,
.native-home .btn-primary:focus-visible {
  background: linear-gradient(135deg, #0f1412, #129783);
}

.native-home .btn-secondary {
  border-color: rgba(18, 151, 131, 0.28);
  color: #0f5f55;
  background: rgba(18, 151, 131, 0.08);
}

.kennel-hero {
  position: relative;
  min-height: 84svh;
  padding: calc(var(--nav-h) + 44px) 0 46px;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: #ffffff;
  background: #151917;
}

.kennel-hero::after {
  position: absolute;
  inset: auto 0 0;
  height: 26%;
  content: "";
  background: linear-gradient(0deg, #f7f8f2 0%, rgba(247, 248, 242, 0) 100%);
  pointer-events: none;
}

.kennel-hero-media {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(12, 16, 14, 0.84) 0%, rgba(12, 16, 14, 0.62) 42%, rgba(12, 16, 14, 0.2) 100%),
    linear-gradient(180deg, rgba(12, 16, 14, 0.18) 0%, rgba(12, 16, 14, 0.78) 100%),
    url("assets/woofwatch/hero-kennel-dog.jpg") center right / cover;
}

.kennel-hero-inner {
  position: relative;
  z-index: 1;
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 420px);
  align-items: end;
  gap: 34px;
}

.kennel-hero-copy {
  max-width: 780px;
}

.kennel-hero .eyebrow {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.26);
  background: rgba(255, 255, 255, 0.13);
  box-shadow: none;
  backdrop-filter: blur(12px);
}

.kennel-hero .eyebrow-dot {
  background: var(--amber);
  box-shadow: 0 0 0 5px rgba(240, 180, 73, 0.18);
}

.kennel-hero h1 {
  max-width: 820px;
  color: #ffffff;
  font-size: clamp(3rem, 6.6vw, 6rem);
  line-height: 0.92;
}

.kennel-hero .hero-kicker {
  max-width: 700px;
  color: rgba(255, 255, 255, 0.86);
}

.kennel-hero .btn-secondary {
  border-color: rgba(255, 255, 255, 0.28);
  color: #ffffff;
  background: rgba(18, 151, 131, 0.34);
}

.kennel-hero .btn-secondary:hover,
.kennel-hero .btn-secondary:focus-visible {
  border-color: rgba(255, 255, 255, 0.46);
  background: rgba(18, 151, 131, 0.48);
}

.hero-actions {
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

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

.hero-proof span {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius);
  color: rgba(255, 255, 255, 0.86);
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(14px);
}

.hero-proof strong {
  color: #ffffff;
  font-size: 1.08rem;
}

.kennel-hero-panel {
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.16);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(18px);
  overflow: hidden;
}

.panel-topline,
.panel-control {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 15px 16px;
}

.panel-topline {
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.8);
  font-weight: 800;
}

.live-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #ffffff;
}

.mini-feed {
  position: relative;
  min-height: 230px;
  background:
    linear-gradient(180deg, rgba(21, 25, 23, 0.05), rgba(21, 25, 23, 0.66)),
    url("assets/woofwatch/customer-dog.jpg") center / cover;
}

.mini-feed::before {
  position: absolute;
  inset: 16px;
  content: "";
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: var(--radius);
}

.mini-feed-status {
  position: absolute;
  left: 18px;
  bottom: 18px;
  display: grid;
  gap: 3px;
  padding: 11px 13px;
  border-radius: var(--radius);
  background: rgba(21, 25, 23, 0.68);
}

.mini-feed-status strong,
.mini-feed-status span {
  color: #ffffff;
}

.panel-metrics {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.panel-metrics div {
  padding: 16px;
}

.panel-metrics div + div {
  border-left: 1px solid rgba(255, 255, 255, 0.18);
}

.panel-metrics span,
.panel-control span {
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.86rem;
}

.panel-metrics strong {
  display: block;
  margin-top: 5px;
  color: #ffffff;
  font-size: 1.65rem;
}

.panel-control {
  align-items: flex-start;
  flex-direction: column;
}

.panel-control span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.funnel-strip {
  position: relative;
  z-index: 2;
  padding: 20px 0 74px;
  background: var(--bg);
}

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

.strip-item,
.conversion-card,
.hardware-showcase,
.lead-form,
.revenue-calculator {
  border-radius: var(--radius);
}

.strip-item {
  min-height: 116px;
  display: grid;
  grid-template-columns: 44px 1fr;
  align-items: center;
  gap: 14px;
  padding: 18px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 18px 42px rgba(34, 42, 34, 0.08);
}

.strip-item svg,
.conversion-card .feature-icon,
.proof-list svg,
.contact-methods svg {
  color: var(--green);
}

.strip-item svg {
  width: 26px;
  height: 26px;
  justify-self: center;
}

.strip-item span {
  color: var(--soft);
  font-weight: 780;
  line-height: 1.42;
}

.native-home .section {
  padding: 82px 0;
}

.native-home .section-alt {
  background:
    linear-gradient(180deg, rgba(255, 243, 222, 0.7), rgba(255, 255, 255, 0.82));
}

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

.conversion-card {
  min-height: 260px;
  padding: 24px;
  border: 1px solid var(--line);
  background: #ffffff;
  box-shadow: 0 18px 46px rgba(34, 42, 34, 0.08);
}

.conversion-card h3 {
  margin-top: 18px;
  font-size: 1.35rem;
}

.conversion-card p {
  margin-top: 12px;
  color: var(--muted);
  line-height: 1.58;
}

.hardware-showcase {
  margin-top: 18px;
  display: grid;
  grid-template-columns: minmax(0, 0.84fr) minmax(320px, 0.76fr);
  gap: 18px;
  align-items: stretch;
}

.hardware-copy,
.hardware-image {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: 0 18px 46px rgba(34, 42, 34, 0.08);
}

.hardware-copy {
  padding: 30px;
}

.hardware-copy h3 {
  font-size: clamp(1.8rem, 3vw, 3rem);
  line-height: 1;
}

.hardware-copy p {
  margin-top: 16px;
  color: var(--soft);
  line-height: 1.62;
}

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

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--soft);
  font-weight: 760;
  line-height: 1.38;
}

.check-list svg {
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
  color: var(--green);
}

.hardware-image {
  min-height: 320px;
  display: grid;
  place-items: center;
  padding: 30px;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(18, 151, 131, 0.1), rgba(240, 180, 73, 0.12)),
    #ffffff;
}

.hardware-image img {
  width: min(100%, 520px);
  filter: drop-shadow(0 22px 30px rgba(21, 25, 23, 0.18));
}

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

.pricing-card,
.founding-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: 0 18px 46px rgba(34, 42, 34, 0.08);
}

.pricing-card {
  position: relative;
  min-height: 470px;
  padding: 24px;
  overflow: hidden;
}

.pricing-card-featured {
  border-color: rgba(78, 55, 246, 0.28);
  box-shadow: 0 22px 58px rgba(78, 55, 246, 0.12);
}

.popular-badge {
  width: fit-content;
  margin-bottom: 18px;
  padding: 7px 10px;
  border-radius: 999px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--brand), var(--green));
  font-size: 0.74rem;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.pricing-top {
  display: grid;
  gap: 7px;
}

.pricing-top span {
  color: var(--brand);
  font-size: 0.86rem;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 0.11em;
}

.pricing-top strong {
  color: var(--ink);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  line-height: 1;
}

.pricing-card p {
  margin-top: 16px;
  color: var(--soft);
  line-height: 1.56;
}

.price-lines {
  margin-top: 18px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
}

.price-lines span {
  min-height: 48px;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  padding: 11px 12px;
  border: 1px solid rgba(18, 151, 131, 0.18);
  border-radius: var(--radius);
  color: var(--muted);
  background: rgba(18, 151, 131, 0.06);
  font-weight: 850;
}

.price-lines strong {
  color: #0f5f55;
  font-size: 1.22rem;
}

.pricing-card .check-list {
  margin-top: 18px;
  gap: 10px;
}

.pricing-card .check-list li {
  font-size: 0.92rem;
}

.founding-card {
  margin-top: 14px;
  padding: 22px;
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  border-color: rgba(240, 180, 73, 0.38);
  background:
    linear-gradient(135deg, rgba(240, 180, 73, 0.16), rgba(255, 255, 255, 0.95)),
    #ffffff;
}

.founding-card h3 {
  font-size: clamp(1.45rem, 3vw, 2.45rem);
  line-height: 1.04;
}

.founding-card p {
  color: var(--soft);
  line-height: 1.58;
}

.install-offer {
  margin-top: 14px;
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  padding: 20px;
  border: 1px solid rgba(18, 151, 131, 0.24);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(18, 151, 131, 0.12), rgba(78, 55, 246, 0.08)),
    #ffffff;
  box-shadow: 0 18px 46px rgba(34, 42, 34, 0.08);
}

.install-offer-icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(18, 151, 131, 0.28);
  border-radius: var(--radius);
  color: #0f5f55;
  background: rgba(18, 151, 131, 0.1);
}

.install-offer-icon svg {
  width: 28px;
  height: 28px;
}

.install-offer .section-label {
  margin-bottom: 7px;
}

.install-offer h3 {
  font-size: clamp(1.35rem, 2.6vw, 2.1rem);
  line-height: 1.04;
}

.install-offer p:not(.section-label) {
  margin-top: 10px;
  color: var(--soft);
  line-height: 1.55;
}

.revenue-calculator {
  margin-top: 18px;
  background: #ffffff;
}

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

.package-option {
  min-height: 74px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--ink);
  background: #ffffff;
  cursor: pointer;
  font-weight: 900;
  text-align: left;
}

.package-option span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 800;
}

.package-option.is-active {
  border-color: rgba(18, 151, 131, 0.44);
  background: rgba(18, 151, 131, 0.1);
  color: #0f5f55;
}

.founding-toggle {
  margin: 12px 0 16px;
  padding: 12px;
  border: 1px solid rgba(240, 180, 73, 0.3);
  border-radius: var(--radius);
  background: rgba(240, 180, 73, 0.1);
}

.hero-result {
  grid-column: 1 / -1;
  border-color: rgba(18, 151, 131, 0.28);
  background: rgba(18, 151, 131, 0.08);
}

.hero-result span {
  color: #0f5f55;
  font-size: clamp(2.3rem, 6vw, 4.8rem);
}

.result-metric span.is-negative {
  color: #b14332;
}

.owner-journey {
  counter-reset: owner-step;
}

.owner-journey .step {
  min-height: 250px;
}

.step-number {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 50%;
  color: #ffffff;
  background: #151917;
  font-weight: 950;
}

.app-showcase {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(320px, 0.9fr);
  align-items: center;
  gap: 34px;
}

.proof-list {
  margin-top: 24px;
  display: grid;
  gap: 12px;
}

.proof-list span {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--soft);
  font-weight: 820;
}

.proof-list svg {
  width: 22px;
  height: 22px;
  flex: 0 0 22px;
}

.phone-gallery {
  position: relative;
  min-height: 560px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.phone-gallery::before {
  position: absolute;
  inset: 12% 8%;
  content: "";
  border: 1px solid rgba(18, 151, 131, 0.2);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.64);
  box-shadow: var(--shadow);
}

.phone-gallery img {
  position: relative;
  width: min(45%, 220px);
  border-radius: 26px;
  box-shadow: 0 24px 55px rgba(21, 25, 23, 0.22);
}

.phone-gallery img:first-child {
  transform: translate(24px, 24px) rotate(-5deg);
}

.phone-gallery img:last-child {
  transform: translate(-12px, -22px) rotate(4deg);
}

.questionnaire-section {
  min-height: calc(100svh - var(--nav-h));
  display: grid;
  align-items: center;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(247, 248, 242, 0.96), rgba(255, 255, 255, 0.9)),
    var(--bg);
}

.eligibility-stage {
  min-height: calc(100svh - var(--nav-h) - 64px);
  display: grid;
  grid-template-rows: auto 1fr;
  gap: clamp(24px, 5vw, 46px);
  align-items: center;
}

.questionnaire-intro {
  width: min(900px, 100%);
  margin: 0 auto;
  text-align: center;
}

.questionnaire-intro h2 {
  max-width: 860px;
  margin: 0 auto;
  font-size: clamp(2.4rem, 6.4vw, 5.6rem);
  line-height: 0.96;
}

.questionnaire-intro .lead {
  max-width: 720px;
  margin: 18px auto 0;
}

.lead-form {
  padding: 22px;
  border: 1px solid var(--line);
  background: #ffffff;
}

.eligibility-form {
  width: min(980px, 100%);
  min-height: min(640px, 68svh);
  display: grid;
  align-content: center;
  margin: 0 auto;
  padding: clamp(18px, 4vw, 44px);
  border: 0;
  background: transparent;
  box-shadow: none;
  overflow: hidden;
}

.questionnaire-progress {
  width: min(780px, 100%);
  display: grid;
  gap: 9px;
  margin: 0 auto clamp(20px, 4vw, 34px);
  color: var(--brand);
  font-size: 0.78rem;
  font-weight: 920;
  text-transform: uppercase;
}

.questionnaire-progress-track {
  overflow: hidden;
  height: 8px;
  border-radius: 999px;
  background: rgba(80, 56, 248, 0.12);
}

.questionnaire-progress-track span {
  display: block;
  width: var(--question-progress, 9%);
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--brand), var(--green));
  transition: width 260ms ease;
}

.questionnaire-viewport {
  position: relative;
  min-height: 430px;
  display: grid;
  align-items: center;
}

.questionnaire-step {
  width: min(780px, 100%);
  margin: 0 auto;
  display: none;
  gap: 18px;
}

.questionnaire-step.is-active {
  display: grid;
  animation: questionIn 300ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.questionnaire-step.is-leaving {
  position: absolute;
  inset: 0;
  display: grid;
  pointer-events: none;
  animation: questionOut 180ms ease both;
}

.eligibility-form[data-question-direction="back"] .questionnaire-step.is-active {
  animation-name: questionInBack;
}

.eligibility-form[data-question-direction="back"] .questionnaire-step.is-leaving {
  animation-name: questionOutBack;
}

.questionnaire-kicker {
  margin: 0;
  color: var(--brand);
  font-size: 0.78rem;
  font-weight: 920;
  justify-self: center;
  text-align: center;
  text-transform: uppercase;
}

.questionnaire-step h3 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(2rem, 4.5vw, 4.2rem);
  line-height: 1.02;
  text-align: center;
}

.questionnaire-helper {
  max-width: 660px;
  margin: 0;
  color: var(--soft);
  font-weight: 780;
  line-height: 1.52;
  text-align: center;
  justify-self: center;
}

.questionnaire-result {
  align-content: center;
}

.questionnaire-result .questionnaire-kicker {
  width: fit-content;
  justify-self: center;
  padding: 8px 11px;
  border: 1px solid rgba(39, 183, 134, 0.26);
  border-radius: 999px;
  color: #0f675a;
  background: rgba(39, 183, 134, 0.1);
}

.questionnaire-step[data-home-boarding-only] .questionnaire-kicker {
  border-color: rgba(241, 166, 59, 0.36);
  color: #8c5413;
  background: rgba(241, 166, 59, 0.12);
}

.recommendation-card {
  width: min(560px, 100%);
  justify-self: center;
  display: grid;
  gap: 8px;
  padding: clamp(18px, 4vw, 28px);
  border: 1px solid rgba(80, 56, 248, 0.16);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(80, 56, 248, 0.1), rgba(39, 183, 134, 0.1)),
    #ffffff;
  box-shadow: 0 20px 54px rgba(34, 42, 34, 0.1);
  text-align: center;
}

.recommendation-card span {
  color: var(--brand);
  font-size: 0.78rem;
  font-weight: 920;
  text-transform: uppercase;
}

.recommendation-card strong {
  color: var(--ink);
  font-size: clamp(2.2rem, 8vw, 4.2rem);
  line-height: 0.95;
}

.recommendation-card small {
  color: var(--green);
  font-size: 1rem;
  font-weight: 920;
}

.recommendation-card p {
  max-width: 440px;
  margin: 6px auto 0;
  color: var(--soft);
  font-weight: 780;
  line-height: 1.48;
}

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

.choice-card {
  min-height: 56px;
  display: flex !important;
  grid-template-columns: none;
  align-items: center;
  gap: 12px !important;
  margin: 0 !important;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 12px;
  color: var(--ink) !important;
  background: #f9faf6;
  cursor: pointer;
  transition:
    border-color 180ms ease,
    background 180ms ease,
    transform 180ms ease;
}

.choice-card:hover,
.choice-card:focus-within {
  transform: translateY(-2px);
  border-color: rgba(80, 56, 248, 0.32);
  background: #ffffff;
}

.choice-card:has(input:checked) {
  border-color: rgba(80, 56, 248, 0.58);
  background:
    linear-gradient(135deg, rgba(80, 56, 248, 0.09), rgba(39, 183, 134, 0.08)),
    #ffffff;
}

.choice-card input {
  width: 18px !important;
  min-height: 18px !important;
  flex: 0 0 18px;
  accent-color: var(--brand);
}

.choice-card span {
  color: var(--ink);
  font-size: 0.98rem;
  font-weight: 900;
  line-height: 1.25;
}

.question-field {
  width: min(620px, 100%);
  margin: 0 !important;
  justify-self: center;
}

.questionnaire-actions {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 8px;
}

.questionnaire-actions .btn {
  min-width: 118px;
}

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

.lead-form label {
  display: grid;
  gap: 7px;
  margin-bottom: 14px;
  color: var(--soft);
  font-size: 0.9rem;
  font-weight: 900;
}

.lead-form input,
.lead-form select,
.lead-form textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 13px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--ink);
  background: #f9faf6;
  outline: none;
}

.lead-form textarea {
  resize: vertical;
}

.lead-honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.lead-form input:focus,
.lead-form select:focus,
.lead-form textarea:focus {
  border-color: rgba(78, 55, 246, 0.42);
  box-shadow: 0 0 0 4px rgba(78, 55, 246, 0.09);
}

.lead-form button[disabled] {
  cursor: wait;
  opacity: 0.68;
  transform: none;
}

.native-home .check-row {
  grid-template-columns: 18px 1fr;
  align-items: start;
  gap: 10px;
}

.native-home .check-row input {
  min-height: 18px;
  margin-top: 2px;
}

.native-home .form-status {
  min-height: 24px;
  margin-top: 12px;
  color: #0f5f55;
  font-weight: 850;
  line-height: 1.45;
}

.native-home .footer {
  background: #151917;
}

.native-home .footer-inner {
  color: rgba(255, 255, 255, 0.72);
}

.native-home .footer-grid strong {
  color: #ffffff;
}

.native-home .footer-grid span {
  color: rgba(255, 255, 255, 0.72);
}

.native-home .footer a {
  color: rgba(255, 255, 255, 0.88);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.seo-page {
  --seo-hero-image: url("/assets/woofwatch/hero-kennel-dog.jpg");
  --seo-hero-position: center center;
  --seo-hero-size: cover;
}

.camera-system-page {
  --seo-hero-image: url("/assets/woofwatch/hero-camera-system-dashboard.png");
  --seo-hero-position: calc(100% - 4vw) 54%;
  --seo-hero-size: min(980px, 58vw) auto;
}

.pricing-page {
  --seo-hero-image: url("/assets/woofwatch/hero-pricing-paw.jpg");
  --seo-hero-position: center center;
}

.privacy-guide-page {
  --seo-hero-image: url("/assets/woofwatch/hero-secure-access.jpg");
  --seo-hero-position: center center;
}

.seo-page .seo-hero {
  min-height: 78svh;
  display: grid;
  align-items: end;
  color: #ffffff;
  background: #151917;
}

.seo-page .seo-hero .kennel-hero-media {
  background:
    linear-gradient(90deg, rgba(12, 16, 14, 0.86) 0%, rgba(12, 16, 14, 0.62) 48%, rgba(12, 16, 14, 0.22) 100%),
    linear-gradient(180deg, rgba(12, 16, 14, 0.16) 0%, rgba(12, 16, 14, 0.82) 100%),
    var(--seo-hero-image) var(--seo-hero-position) / var(--seo-hero-size) no-repeat;
}

.camera-system-page .seo-hero .kennel-hero-media {
  background:
    linear-gradient(90deg, rgba(12, 16, 14, 0.86) 0%, rgba(12, 16, 14, 0.62) 48%, rgba(12, 16, 14, 0.22) 100%),
    linear-gradient(180deg, rgba(12, 16, 14, 0.16) 0%, rgba(12, 16, 14, 0.82) 100%),
    url("/assets/woofwatch/hero-camera-system-dashboard.png") calc(100% - 4vw) 54% / min(980px, 58vw) auto no-repeat;
}

.pricing-page .seo-hero .kennel-hero-media {
  background:
    linear-gradient(90deg, rgba(12, 16, 14, 0.86) 0%, rgba(12, 16, 14, 0.62) 48%, rgba(12, 16, 14, 0.22) 100%),
    linear-gradient(180deg, rgba(12, 16, 14, 0.16) 0%, rgba(12, 16, 14, 0.82) 100%),
    url("/assets/woofwatch/hero-pricing-paw.jpg") center center / cover no-repeat;
}

.seo-page .seo-hero .page-hero-inner {
  z-index: 2;
}

.seo-page .seo-hero h1,
.seo-page .seo-hero .hero-kicker {
  color: #ffffff;
}

.seo-page .seo-hero h1 {
  font-size: clamp(3rem, 6.2vw, 6.3rem);
  line-height: 0.92;
}

.section-compact {
  padding-top: 48px;
  padding-bottom: 48px;
}

.text-link {
  color: var(--brand);
  font-weight: 900;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.internal-link-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}

.case-study-card-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.internal-link-grid a,
.internal-link-grid .case-study-card-disabled {
  min-height: 138px;
  display: grid;
  align-content: space-between;
  gap: 18px;
  padding: 20px;
  border: 1px solid rgba(80, 56, 248, 0.16);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(80, 56, 248, 0.06), rgba(39, 183, 134, 0.06)),
    #ffffff;
  box-shadow: 0 16px 40px rgba(34, 42, 34, 0.07);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.internal-link-grid a:hover,
.internal-link-grid a:focus-visible {
  transform: translateY(-3px);
  border-color: rgba(80, 56, 248, 0.4);
  box-shadow: 0 24px 54px rgba(80, 56, 248, 0.12);
}

.internal-link-grid .case-study-card-disabled {
  width: 100%;
  color: inherit;
  text-align: left;
  cursor: default;
}

.internal-link-grid .case-study-card-disabled:hover,
.internal-link-grid .case-study-card-disabled:focus-visible {
  transform: none;
  border-color: rgba(80, 56, 248, 0.16);
  box-shadow: 0 16px 40px rgba(34, 42, 34, 0.07);
}

.internal-link-grid span,
.internal-link-grid .case-study-card-disabled span {
  color: var(--brand);
  font-size: 0.78rem;
  font-weight: 920;
  text-transform: uppercase;
}

.internal-link-grid strong,
.internal-link-grid .case-study-card-disabled strong {
  color: var(--ink);
  font-size: 1.02rem;
  line-height: 1.28;
}

.guide-link-grid a {
  min-height: 254px;
  padding: 14px;
  align-content: stretch;
  gap: 14px;
}

.guide-card-media {
  overflow: hidden;
  aspect-ratio: 1.48;
  border-radius: calc(var(--radius) - 8px);
  background: #edf4ef;
}

.guide-card-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.guide-card-media-contain {
  display: grid;
  place-items: center;
  padding: 14px;
  background:
    linear-gradient(135deg, rgba(80, 56, 248, 0.08), rgba(39, 183, 134, 0.1)),
    #ffffff;
}

.guide-card-media-contain img {
  object-fit: contain;
}

.guide-card-copy {
  display: grid;
  align-content: start;
  gap: 8px;
  padding: 0 4px 3px;
}

.internal-link-grid.case-study-card-grid a,
.internal-link-grid.case-study-card-grid .case-study-card-disabled {
  min-height: 272px;
  align-content: stretch;
}

.case-study-card-logo {
  display: grid;
  place-items: center;
  min-height: 128px;
  padding: 16px;
  border: 1px solid rgba(80, 56, 248, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.92);
}

.case-study-card-logo img {
  max-height: 98px;
  width: min(220px, 100%);
  object-fit: contain;
}

.seo-topic-grid .conversion-card h3,
.seo-card h3 {
  font-size: 1.3rem;
}

.seo-split {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.seo-panel,
.seo-cta {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: 0 18px 46px rgba(34, 42, 34, 0.08);
}

.seo-panel {
  padding: 26px;
}

.seo-panel h3 {
  font-size: clamp(1.45rem, 2.7vw, 2.2rem);
  line-height: 1.04;
}

.seo-panel h2 {
  margin-top: 0;
  font-size: clamp(1.8rem, 3.2vw, 3rem);
  line-height: 1;
}

.todo-panel {
  border-color: rgba(237, 174, 69, 0.38);
  background:
    linear-gradient(135deg, rgba(237, 174, 69, 0.16), rgba(80, 56, 248, 0.06)),
    #ffffff;
}

.case-study-page {
  --case-study-hero-image: url("/assets/woofwatch/case-studies/beacon-barkers/dogs-lined-up.jpg");
}

.hylton-case-study {
  --case-study-hero-image: url("/assets/woofwatch/case-studies/beacon-barkers/customer-viewing-phone.jpg");
}

.oak-farm-case-study {
  --case-study-hero-image: url("/assets/woofwatch/hero-oak-farm.jpg");
}

.case-study-page .seo-hero .kennel-hero-media {
  background:
    linear-gradient(90deg, rgba(12, 16, 14, 0.88) 0%, rgba(12, 16, 14, 0.62) 48%, rgba(12, 16, 14, 0.2) 100%),
    linear-gradient(180deg, rgba(12, 16, 14, 0.1) 0%, rgba(12, 16, 14, 0.84) 100%),
    var(--case-study-hero-image) center / cover;
}

.case-study-hero-card {
  align-self: end;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  color: #ffffff;
  background: rgba(15, 20, 18, 0.72);
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(18px);
}

.case-logo-wrap {
  display: grid;
  place-items: center;
  min-height: 220px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.95);
}

.case-logo-wrap img {
  width: min(260px, 100%);
  max-height: 190px;
  object-fit: contain;
}

.case-name-mark {
  display: grid;
  place-items: center;
  min-height: 220px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(80, 56, 248, 0.12), rgba(39, 183, 134, 0.12)),
    rgba(255, 255, 255, 0.94);
  color: #17211d;
  text-align: center;
}

.case-name-mark strong {
  max-width: 280px;
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 0.96;
}

.case-name-mark span {
  margin-top: 12px;
  color: var(--soft);
  font-weight: 900;
}

.case-study-proof {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.case-study-proof span {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.88);
  font-weight: 850;
}

.case-study-proof svg {
  width: 19px;
  height: 19px;
  flex: 0 0 19px;
  color: var(--green);
}

.case-study-intro,
.case-study-media-grid {
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(0, 1fr);
  gap: 28px;
  align-items: center;
}

.case-study-media-grid {
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.74fr);
}

.case-study-photo,
.case-phone-frame {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: 0 22px 58px rgba(34, 42, 34, 0.11);
}

.case-study-photo img,
.case-phone-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.case-study-photo {
  aspect-ratio: 1.28;
}

.case-phone-frame {
  justify-self: end;
  width: min(420px, 100%);
  aspect-ratio: 0.8;
}

.case-study-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 24px;
}

.case-study-facts span {
  display: grid;
  gap: 4px;
  min-height: 86px;
  padding: 16px;
  border: 1px solid rgba(80, 56, 248, 0.16);
  border-radius: var(--radius);
  background: #ffffff;
  color: var(--soft);
  font-weight: 820;
  box-shadow: 0 14px 34px rgba(34, 42, 34, 0.07);
}

.case-study-facts span:nth-child(2) {
  border-color: rgba(39, 183, 134, 0.34);
  background:
    linear-gradient(135deg, rgba(39, 183, 134, 0.12), rgba(80, 56, 248, 0.06)),
    #ffffff;
}

.case-study-facts strong {
  color: var(--brand);
  font-size: 0.75rem;
  text-transform: uppercase;
}

.case-study-note {
  margin: 24px 0 0;
  padding: 16px 18px;
  border: 1px solid rgba(80, 56, 248, 0.18);
  border-radius: var(--radius);
  color: #2f276a;
  background: rgba(80, 56, 248, 0.07);
  font-weight: 850;
}

.seo-cta {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(280px, 0.56fr);
  gap: 22px;
  align-items: center;
  padding: 26px;
  background:
    linear-gradient(135deg, rgba(18, 151, 131, 0.1), rgba(78, 55, 246, 0.08)),
    #ffffff;
}

.seo-cta .hero-actions {
  grid-column: 1 / -1;
  margin-top: 0;
}

.trust-stack {
  margin-top: 22px;
  display: grid;
  gap: 10px;
}

.trust-stack span {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--soft);
  font-weight: 820;
  line-height: 1.4;
}

.trust-stack svg {
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
  color: var(--green);
}

.risk-note {
  margin-top: 18px;
  padding: 13px;
  border: 1px solid rgba(18, 151, 131, 0.2);
  border-radius: var(--radius);
  color: #0f5f55;
  background: rgba(18, 151, 131, 0.08);
  font-weight: 820;
  line-height: 1.5;
}

.policy-section {
  padding-top: calc(var(--nav-h) + 72px);
}

.policy-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.7fr) minmax(360px, 1fr);
  gap: 38px;
  align-items: start;
}

.policy-section h1 {
  max-width: 620px;
  font-size: clamp(3rem, 7vw, 6rem);
  line-height: 0.94;
}

.policy-content {
  display: grid;
  gap: 18px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: 0 18px 46px rgba(34, 42, 34, 0.08);
}

.policy-content h2 {
  margin-top: 8px;
  font-size: 1.35rem;
  line-height: 1.18;
}

.policy-content h2:first-child {
  margin-top: 0;
}

.policy-content p {
  color: var(--soft);
  line-height: 1.64;
}

.policy-content a {
  color: var(--brand);
  font-weight: 900;
}

@media (max-width: 980px) {
  .native-home .nav-links {
    background: rgba(247, 248, 242, 0.98);
  }

  .kennel-hero-inner,
  .hardware-showcase,
  .app-showcase,
  .pricing-grid,
  .founding-card,
  .install-offer,
  .seo-split,
  .seo-cta,
  .policy-layout {
    grid-template-columns: 1fr;
  }

  .kennel-hero-panel {
    max-width: 520px;
  }

  .strip-grid,
  .conversion-grid {
    grid-template-columns: 1fr;
  }

  .phone-gallery {
    min-height: 460px;
  }
}

@media (max-width: 700px) {
  .native-brand {
    width: min(194px, 52vw);
  }

  .kennel-hero {
    min-height: 86svh;
    padding: calc(var(--nav-h) + 22px) 0 24px;
  }

  .kennel-hero-media {
    background:
      linear-gradient(180deg, rgba(12, 16, 14, 0.78) 0%, rgba(12, 16, 14, 0.64) 54%, rgba(12, 16, 14, 0.86) 100%),
      url("assets/woofwatch/hero-kennel-dog.jpg") center / cover;
  }

  .kennel-hero h1 {
    font-size: clamp(2.55rem, 14vw, 4rem);
    line-height: 0.93;
  }

  .kennel-hero .hero-kicker {
    margin-top: 18px;
    font-size: 1rem;
    line-height: 1.48;
  }

  .hero-actions,
  .hero-proof {
    margin-top: 18px;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .hero-proof span {
    min-height: 40px;
    flex: 1 1 130px;
    padding: 8px 10px;
    font-size: 0.84rem;
  }

  .kennel-hero-panel {
    display: none;
  }

  .funnel-strip {
    padding-bottom: 42px;
  }

  .native-home .section {
    padding: 58px 0;
  }

  .native-home h2,
  .questionnaire-intro h2 {
    font-size: clamp(2rem, 10vw, 3.15rem);
  }

  .lead-grid,
  .choice-grid,
  .package-switch,
  .price-lines,
  .panel-metrics {
    grid-template-columns: 1fr;
  }

  .hardware-copy,
  .lead-form,
  .pricing-card,
  .founding-card {
    padding: 20px;
  }

  .questionnaire-progress {
    margin-bottom: 14px;
    font-size: 0.72rem;
  }

  .questionnaire-viewport {
    min-height: 390px;
  }

  .questionnaire-step {
    gap: 14px;
  }

  .questionnaire-step h3 {
    font-size: clamp(1.35rem, 8vw, 2rem);
    line-height: 1.04;
  }

  .choice-card {
    min-height: 52px;
    padding: 12px;
  }

  .choice-card span {
    font-size: 0.93rem;
  }

  .questionnaire-actions {
    flex-direction: column-reverse;
  }

  .questionnaire-actions .btn {
    width: 100%;
    min-width: 0;
  }

  .pricing-card {
    min-height: 0;
  }

  .phone-gallery {
    min-height: 380px;
  }

  .phone-gallery img {
    width: min(47%, 170px);
    border-radius: 22px;
  }
}

/* Premium localhost motion layer */
.native-home {
  --hero-shift-x: 0px;
  --hero-shift-y: 0px;
  --hero-panel-tilt-x: 0deg;
  --hero-panel-tilt-y: 0deg;
  --reticle-x: 50%;
  --reticle-y: 44%;
}

.motion-progress {
  position: fixed;
  inset: 0 0 auto;
  z-index: 80;
  height: 4px;
  pointer-events: none;
  background: rgba(21, 25, 23, 0.08);
}

.motion-progress span {
  display: block;
  width: 100%;
  height: 100%;
  transform: scaleX(var(--scroll-ratio, 0));
  transform-origin: 0 50%;
  background: linear-gradient(90deg, var(--green), var(--brand), var(--amber));
  box-shadow: 0 0 22px rgba(78, 55, 246, 0.38);
}

.native-home .site-header {
  transition:
    background 220ms ease,
    box-shadow 220ms ease,
    border-color 220ms ease,
    transform 220ms ease;
}

.native-home .site-header.is-scrolled {
  border-color: rgba(21, 25, 23, 0.16);
  background: rgba(247, 248, 242, 0.96);
  box-shadow: 0 18px 48px rgba(21, 25, 23, 0.14);
}

.native-home .nav-links a {
  position: relative;
  overflow: hidden;
}

.native-home .nav-links a::after {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 6px;
  height: 2px;
  content: "";
  transform: scaleX(0);
  transform-origin: 0 50%;
  background: linear-gradient(90deg, var(--green), var(--brand));
  transition: transform 180ms ease;
}

.native-home .nav-links a[aria-current="true"]::after,
.native-home .nav-links a:hover::after,
.native-home .nav-links a:focus-visible::after {
  transform: scaleX(1);
}

.kennel-hero {
  isolation: isolate;
}

.kennel-hero-media {
  z-index: 0;
  transform: translate3d(var(--hero-shift-x), var(--hero-shift-y), 0) scale(1.06);
  transform-origin: center;
  will-change: transform;
}

.kennel-hero-inner {
  z-index: 2;
}

.kennel-hero h1 .title-word {
  display: inline-block;
  overflow: hidden;
  padding: 0.03em 0 0.15em;
  margin: -0.03em 0 -0.15em;
  vertical-align: bottom;
}

.kennel-hero h1 .title-word > span {
  display: inline-block;
  transform: translateY(112%) rotate(3deg);
  animation: titleRise 820ms cubic-bezier(0.16, 1, 0.3, 1) forwards;
  animation-delay: var(--word-delay, 0ms);
}

.kennel-hero .hero-kicker,
.hero-actions,
.hero-proof {
  transform: translateY(0);
  transition:
    opacity 700ms ease,
    transform 700ms cubic-bezier(0.16, 1, 0.3, 1);
}

.kennel-hero-panel.reveal.is-visible {
  transform:
    perspective(1100px)
    translate3d(0, 0, 0)
    rotateX(var(--hero-panel-tilt-y))
    rotateY(var(--hero-panel-tilt-x));
  transform-style: preserve-3d;
  transition:
    opacity 700ms ease,
    transform 180ms ease,
    box-shadow 220ms ease;
}

.kennel-hero-panel:hover {
  box-shadow: 0 28px 84px rgba(0, 0, 0, 0.32);
}

.feed-reticle {
  position: absolute;
  left: var(--reticle-x);
  top: var(--reticle-y);
  z-index: 2;
  width: 78px;
  height: 78px;
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: 50%;
  opacity: 0.82;
  transform: translate(-50%, -50%);
  transition:
    left 130ms ease,
    top 130ms ease,
    opacity 180ms ease;
}

.feed-reticle::before,
.feed-reticle::after,
.feed-reticle span::before,
.feed-reticle span::after {
  position: absolute;
  content: "";
  background: rgba(255, 255, 255, 0.72);
}

.feed-reticle::before,
.feed-reticle::after {
  left: 50%;
  width: 1px;
  height: 14px;
  transform: translateX(-50%);
}

.feed-reticle::before {
  top: -7px;
}

.feed-reticle::after {
  bottom: -7px;
}

.feed-reticle span::before,
.feed-reticle span::after {
  top: 50%;
  width: 14px;
  height: 1px;
  transform: translateY(-50%);
}

.feed-reticle span::before {
  left: -7px;
}

.feed-reticle span::after {
  right: -7px;
}

.feed-sweep {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(180deg, transparent 0%, rgba(18, 151, 131, 0.18) 48%, transparent 58%);
  opacity: 0.72;
  transform: translateY(-100%);
  animation: feedSweep 4.8s ease-in-out infinite;
}

.mini-feed::after {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  background:
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 100% 18px, 18px 100%;
  opacity: 0.28;
}

.native-home .reveal {
  --reveal-x: 0px;
  --reveal-y: 48px;
  --reveal-scale: 0.972;
  --reveal-rotate: 0deg;
  filter: blur(8px);
  transform:
    translate3d(var(--reveal-x), var(--reveal-y), 0)
    rotate(var(--reveal-rotate))
    scale(var(--reveal-scale));
  transition:
    opacity 880ms cubic-bezier(0.16, 1, 0.3, 1),
    transform 880ms cubic-bezier(0.16, 1, 0.3, 1),
    filter 880ms cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform, filter;
}

.native-home .reveal.is-visible {
  filter: blur(0);
  transform: translate3d(0, 0, 0) scale(1);
}

  .native-home .section-head.reveal,
  .native-home .app-copy.reveal,
  .native-home .eligibility-stage.reveal {
    --reveal-x: -28px;
    --reveal-y: 34px;
  }

.native-home .pricing-grid.reveal,
.native-home .revenue-calculator.reveal,
.native-home .faq-list.reveal,
.native-home .phone-gallery.reveal {
  --reveal-x: 28px;
  --reveal-y: 42px;
}

.native-home .kennel-hero-panel.reveal {
  --reveal-x: 38px;
  --reveal-y: 34px;
  --reveal-scale: 0.95;
}

.native-home .reveal .reveal-child {
  opacity: 0;
  filter: blur(7px);
  clip-path: inset(12% 0 0 0);
}

.native-home .reveal.is-visible .reveal-child {
  animation: childCascade 760ms cubic-bezier(0.16, 1, 0.3, 1) forwards;
  animation-delay: var(--stagger-delay, 0ms);
}

.native-home .section {
  position: relative;
  overflow: clip;
}

.native-home .section::before {
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  content: "";
  pointer-events: none;
  background: linear-gradient(180deg, transparent, rgba(18, 151, 131, 0.54), rgba(78, 55, 246, 0.44), transparent);
  opacity: var(--section-accent-opacity, 0);
  transform: translateY(calc((1 - var(--section-progress, 0)) * -28%));
  transition: opacity 260ms ease;
}

.native-home .section-inner {
  transform: translateY(calc((0.5 - var(--section-progress, 0.5)) * 18px));
  transition: transform 120ms linear;
}

.native-home .section.is-in-view .section-label {
  position: relative;
}

.native-home .section.is-in-view .section-label::after {
  display: inline-block;
  width: clamp(34px, calc(var(--section-progress, 0) * 92px), 92px);
  height: 2px;
  margin-left: 10px;
  vertical-align: middle;
  content: "";
  background: linear-gradient(90deg, var(--green), var(--brand));
}

.native-home .interactive-surface {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  transform-style: preserve-3d;
  will-change: transform;
  transition:
    transform 220ms cubic-bezier(0.16, 1, 0.3, 1),
    border-color 180ms ease,
    background 180ms ease,
    box-shadow 180ms ease;
  --magnet-x: 0px;
  --magnet-y: 0px;
  --tilt-x: 0deg;
  --tilt-y: 0deg;
  --surface-lift: 4px;
}

.native-home .interactive-surface::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  pointer-events: none;
  background:
    radial-gradient(circle at var(--shine-x, 50%) var(--shine-y, 50%), rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.14) 18%, transparent 42%);
  mix-blend-mode: soft-light;
  opacity: 0;
  transition: opacity 180ms ease;
}

.native-home .interactive-surface > * {
  position: relative;
  z-index: 2;
}

.native-home .interactive-surface:hover::before,
.native-home .interactive-surface:focus-within::before {
  opacity: 1;
}

.native-home .interactive-surface:not(.reveal),
.native-home .interactive-surface.reveal.is-visible {
  transform:
    perspective(900px)
    translate3d(var(--magnet-x), var(--magnet-y), 0)
    rotateX(var(--tilt-y))
    rotateY(var(--tilt-x));
}

.native-home .interactive-surface:not(.reveal):hover,
.native-home .interactive-surface.reveal.is-visible:hover,
.native-home .interactive-surface:focus-within {
  transform:
    perspective(900px)
    translate3d(var(--magnet-x), calc(var(--magnet-y) - var(--surface-lift)), 0)
    rotateX(var(--tilt-y))
    rotateY(var(--tilt-x));
}

.btn.interactive-surface {
  --surface-lift: 2px;
}

.pricing-card.interactive-surface,
.conversion-card.interactive-surface,
.strip-item.interactive-surface,
.step.interactive-surface {
  --surface-lift: 7px;
}

.hardware-image img {
  transform: translate3d(var(--hardware-x, 0px), var(--hardware-y, 0px), 0) rotate(var(--hardware-rotate, 0deg));
  transition: transform 120ms linear;
  will-change: transform;
}

.phone-gallery img:first-child {
  transform: translate(24px, calc(24px + var(--phone-y-a, 0px))) rotate(calc(-5deg + var(--phone-rotate-a, 0deg)));
}

.phone-gallery img:last-child {
  transform: translate(-12px, calc(-22px + var(--phone-y-b, 0px))) rotate(calc(4deg + var(--phone-rotate-b, 0deg)));
}

.package-switch-pricing {
  position: relative;
  isolation: isolate;
}

.package-switch-pricing::before {
  position: absolute;
  top: var(--switch-top, 0px);
  left: var(--switch-left, 0px);
  z-index: -1;
  width: var(--switch-width, 0px);
  height: var(--switch-height, 0px);
  content: "";
  border: 1px solid rgba(18, 151, 131, 0.38);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(18, 151, 131, 0.18), rgba(78, 55, 246, 0.09)),
    #ffffff;
  box-shadow: 0 14px 28px rgba(18, 151, 131, 0.12);
  transition:
    left 260ms cubic-bezier(0.16, 1, 0.3, 1),
    top 260ms cubic-bezier(0.16, 1, 0.3, 1),
    width 260ms cubic-bezier(0.16, 1, 0.3, 1),
    height 260ms cubic-bezier(0.16, 1, 0.3, 1);
}

.package-switch-pricing .package-option {
  position: relative;
  z-index: 1;
  background: rgba(255, 255, 255, 0.72);
  transition:
    color 180ms ease,
    border-color 180ms ease,
    background 180ms ease,
    transform 180ms ease;
}

.package-switch-pricing .package-option.is-active {
  border-color: transparent;
  background: transparent;
}

.currency-range-row input[type="range"] {
  height: 10px;
  border: 0;
  border-radius: 999px;
  background:
    linear-gradient(90deg, var(--green) 0 var(--range-fill, 21%), rgba(21, 25, 23, 0.12) var(--range-fill, 21%) 100%);
  cursor: pointer;
  outline: 0;
  appearance: none;
}

.currency-range-row input[type="range"]::-webkit-slider-thumb {
  width: 24px;
  height: 24px;
  border: 3px solid #ffffff;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand), var(--green));
  box-shadow:
    0 8px 18px rgba(21, 25, 23, 0.22),
    0 0 0 5px rgba(18, 151, 131, 0.12);
  appearance: none;
}

.currency-range-row input[type="range"]::-moz-range-thumb {
  width: 20px;
  height: 20px;
  border: 3px solid #ffffff;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand), var(--green));
  box-shadow:
    0 8px 18px rgba(21, 25, 23, 0.22),
    0 0 0 5px rgba(18, 151, 131, 0.12);
}

.result-metric span {
  transition:
    color 180ms ease,
    transform 220ms cubic-bezier(0.16, 1, 0.3, 1);
}

.result-metric span.is-updating {
  transform: translateY(-2px) scale(1.035);
}

.owner-journey .step.reveal.is-visible.is-current {
  border-color: rgba(18, 151, 131, 0.34);
  box-shadow: 0 24px 64px rgba(18, 151, 131, 0.13);
  transform: translateY(-8px);
}

.owner-journey .step.is-current .step-number {
  background: linear-gradient(135deg, var(--green), var(--brand));
  box-shadow: 0 12px 28px rgba(18, 151, 131, 0.2);
}

.floating-survey-cta {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 40;
  opacity: 0;
  pointer-events: none;
  transform: translateY(16px) scale(0.98);
}

.floating-survey-cta.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

@keyframes titleRise {
  to {
    transform: translateY(0) rotate(0deg);
  }
}

@keyframes childCascade {
  0% {
    opacity: 0;
    filter: blur(7px);
    clip-path: inset(12% 0 0 0);
  }
  62% {
    opacity: 1;
  }
  100% {
    opacity: 1;
    filter: blur(0);
    clip-path: inset(0 0 0 0);
  }
}

@keyframes feedSweep {
  0%,
  28% {
    transform: translateY(-100%);
    opacity: 0;
  }
  42% {
    opacity: 0.75;
  }
  100% {
    transform: translateY(100%);
    opacity: 0;
  }
}

@media (max-width: 700px) {
  .motion-progress {
    height: 3px;
  }

  .floating-survey-cta {
    right: 14px;
    bottom: 14px;
    left: 14px;
  }

  .floating-survey-cta.btn {
    width: auto;
  }

  .feed-reticle,
  .feed-sweep {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .kennel-hero-media,
  .kennel-hero-panel.reveal.is-visible,
  .native-home .interactive-surface,
  .native-home .interactive-surface:hover,
  .native-home .interactive-surface.reveal.is-visible,
  .questionnaire-step.is-active,
  .questionnaire-step.is-leaving,
  .owner-journey .step.reveal.is-visible.is-current,
  .hardware-image img,
  .phone-gallery img:first-child,
  .phone-gallery img:last-child {
    transform: none !important;
    animation: none !important;
  }

  .kennel-hero h1 .title-word > span {
    animation: none !important;
    transform: none !important;
  }

  .feed-sweep {
    animation: none !important;
  }

  .native-home .section-inner,
  .native-home .reveal .reveal-child {
    transform: none !important;
    filter: none !important;
    clip-path: none !important;
  }

  .native-home .section::before,
  .native-home .section-label::after {
    display: none !important;
  }
}
