:root {
  --bg: hsl(30 100% 97%);
  --surface: hsl(0 0% 100%);
  --surface-soft: hsl(30 33% 93%);
  --text: hsl(240 33% 14%);
  --muted: hsl(245 20% 35%);
  --line: hsl(30 20% 88%);
  --primary: hsl(322 96% 39%);
  --primary-foreground: hsl(0 0% 100%);
  --secondary: hsl(45 100% 61%);
  --secondary-foreground: hsl(0 0% 100%);
  --accent: hsl(45 100% 61%);
  --accent-foreground: hsl(240 33% 14%);
  --shadow: 0 20px 46px rgba(25, 27, 48, 0.10);
  --shadow-soft: 0 10px 24px rgba(25, 27, 48, 0.08);
  --gradient: linear-gradient(135deg, hsl(45 100% 61%) 0%, hsl(322 96% 39%) 100%);
  --gradient-accent: linear-gradient(135deg, hsl(45 100% 61%) 0%, hsl(322 96% 39%) 100%);
  --gradient-warm: linear-gradient(135deg, hsl(30 100% 97%) 0%, hsl(45 100% 95%) 100%);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 16px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.45;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button,
input,
textarea { font: inherit; }

.icon-svg {
  width: 1em;
  height: 1em;
  display: block;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
  flex: 0 0 auto;
}

.eyebrow-icon {
  width: 14px;
  height: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 14px;
}

.eyebrow-icon svg,
.paw-print svg {
  width: 100%;
  height: 100%;
  display: block;
  fill: currentColor;
  stroke: none;
}

.shell {
  width: min(1280px, calc(100% - 28px));
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.gradient-text {
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(10px);
  background: color-mix(in srgb, var(--bg) 82%, transparent);
  border-bottom: 1px solid color-mix(in srgb, var(--line) 58%, transparent);
}

.site-header__inner {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  line-height: 1;
  color: var(--text);
}

.brand-mark {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 32px;
}

.brand-mark img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
}

.brand-wordmark-image {
  width: auto;
  height: 28px;
  display: block;
  object-fit: contain;
}

.nav {
  display: flex;
  align-items: center;
  gap: 34px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 1px solid rgba(47, 54, 92, 0.10);
  border-radius: 14px;
  background: rgba(255,255,255,0.88);
  color: var(--text);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.nav-toggle__line {
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.nav-toggle[aria-expanded="true"] .nav-toggle__line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle__line:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] .nav-toggle__line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav a {
  font-size: 15px;
  font-weight: 500;
  color: color-mix(in srgb, var(--muted) 88%, transparent);
}

.nav a:hover,
.nav a.is-active { color: var(--text); }

.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: 999px;
  background: var(--gradient-accent);
  box-shadow: 0 12px 24px rgba(197, 4, 113, 0.18);
  color: var(--accent-foreground) !important;
  font-weight: 800 !important;
  cursor: pointer;
  transition: filter 140ms ease, box-shadow 140ms ease;
}

.page-section { padding: 86px 0; }
.page-section--soft { background: color-mix(in srgb, var(--surface-soft) 42%, transparent); }
.hero {
  padding-top: 72px;
  padding-bottom: 72px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 16px;
  border-radius: 999px;
  background: var(--gradient);
  color: var(--primary-foreground);
  font-size: 14px;
  font-weight: 800;
  box-shadow: 0 12px 24px rgba(197, 4, 113, 0.16);
}

.section-header {
  max-width: 860px;
  margin: 0 auto 44px;
  text-align: center;
}

.section-header h2 { margin-top: 0; }

.hero-panel,
.hero-note,
.panel-card,
.mini-card,
.metric-card,
.hero-illustration,
.panel,
.channel,
.chip {
  border-radius: var(--radius-xl);
  background: rgba(255,255,255,0.94);
  border: 1px solid rgba(47, 54, 92, 0.06);
  box-shadow: var(--shadow);
}

.panel-card,
.mini-card,
.metric-card,
.panel,
.channel,
.chip {
  box-shadow: var(--shadow-soft);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 16px 30px;
  border-radius: 999px;
  border: 2px solid transparent;
  font-size: 16px;
  font-weight: 800;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  text-decoration: none;
  transition: filter 140ms ease, box-shadow 140ms ease, border-color 140ms ease, background-color 140ms ease, color 140ms ease;
}

.button:hover,
.nav-cta:hover {
  filter: brightness(1.04);
}

.button:focus-visible {
  outline: 3px solid rgba(197, 4, 113, 0.20);
  outline-offset: 3px;
}

.button--primary {
  background: var(--gradient);
  color: var(--primary-foreground);
  border: none;
  box-shadow: none;
}

.button--primary:hover,
.nav-cta:hover {
  box-shadow: 0 14px 28px rgba(197, 4, 113, 0.16), 0 6px 16px rgba(255, 199, 54, 0.16);
}

.button--secondary {
  border-color: color-mix(in srgb, var(--primary) 72%, transparent);
  color: var(--primary);
  background: rgba(255,255,255,0.84);
}

.button--secondary:hover {
  border-color: var(--primary);
  background: rgba(255,255,255,0.98);
  box-shadow: 0 10px 22px rgba(197, 4, 113, 0.10);
}

.button--light {
  background: rgba(255,255,255,0.12);
  color: #fff;
  border-color: rgba(255,255,255,0.26);
  box-shadow: none;
}

.button--light:hover {
  background: rgba(255,255,255,0.18);
  border-color: rgba(255,255,255,0.42);
  box-shadow: 0 12px 24px rgba(14, 17, 43, 0.10);
}

.cta-band {
  position: relative;
  margin-top: 24px;
  overflow: hidden;
  background: var(--gradient);
  color: #fff;
  padding: 88px 0 56px;
}

.paw-print {
  position: absolute;
  width: 52px;
  height: 52px;
  color: rgba(255,255,255,0.14);
  pointer-events: none;
}

.paw-print--one { left: 6%; top: 12%; transform: rotate(-14deg); }
.paw-print--two { left: 29%; top: 16%; width: 44px; height: 44px; transform: rotate(10deg); }
.paw-print--three { right: 8%; top: 44%; width: 48px; height: 48px; transform: rotate(18deg); }
.paw-print--four { left: 14%; bottom: 18%; width: 46px; height: 46px; transform: rotate(-20deg); }
.paw-print--five { right: 22%; bottom: 26%; width: 40px; height: 40px; transform: rotate(12deg); }

.cta-shell {
  position: relative;
  z-index: 1;
  text-align: center;
}

.cta-shell h2 { margin: 0; }

.cta-shell p {
  max-width: 760px;
  margin: 22px auto 0;
  color: rgba(255,255,255,0.9);
}

.cta-actions {
  margin-top: 32px;
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.site-footer {
  background: color-mix(in srgb, var(--surface-soft) 38%, #fff);
  border-top: 1px solid rgba(47, 54, 92, 0.06);
}

.site-footer__inner {
  padding: 34px 0 24px;
}

.footer-top {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 1.35fr);
  gap: 36px;
  align-items: start;
}

.footer-brand-block {
  display: grid;
  gap: 14px;
  max-width: 360px;
}

.footer-tagline {
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
  color: rgba(31, 35, 64, 0.70);
  font-weight: 500;
}

.footer-nav-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px 48px;
}

.footer-group {
  display: grid;
  gap: 10px;
  align-content: start;
}

.footer-group__title {
  margin: 0 0 2px;
  font-size: 13px;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(31, 35, 64, 0.48);
  font-weight: 800;
}

.footer-group a {
  color: rgba(31, 35, 64, 0.78);
  font-size: 15px;
  font-weight: 500;
}

.footer-group a:hover {
  color: var(--text);
}

.footer-meta {
  width: 100%;
  margin-top: 26px;
  padding-top: 18px;
  border-top: 1px solid rgba(47, 54, 92, 0.06);
  color: rgba(31, 35, 64, 0.76);
  font-size: 15px;
  font-weight: 500;
  text-align: center;
}

.footer-meta a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 3px;
}

@media (max-width: 920px) {
  .nav { gap: 18px; }
}

@media (max-width: 720px) {
  .site-header__inner {
    justify-content: space-between;
    text-align: left;
    align-items: center;
    flex-wrap: wrap;
  }

  .site-footer__inner {
    text-align: center;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 28px;
    justify-items: center;
  }

  .footer-brand-block {
    justify-items: center;
    text-align: center;
  }

  .footer-nav-grid {
    width: 100%;
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .nav {
    display: none;
    width: 100%;
    order: 3;
    padding-top: 12px;
    padding-bottom: 10px;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
  }

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

  .nav a {
    text-align: center;
    padding: 10px 8px;
  }

  .nav-cta {
    width: 100%;
  }

  .page-section { padding: 62px 0; }
  .hero { padding-top: 52px; padding-bottom: 52px; }
  .cta-band { padding-top: 72px; }
}

@media (max-width: 520px) {
  .shell { width: min(calc(100% - 18px), 100%); }
  .site-header__inner { min-height: 88px; }
  .brand {
    width: auto;
    justify-content: flex-start;
  }

  .brand-wordmark-image {
    height: 24px;
  }
  .button { width: 100%; text-align: center; }

  .site-footer__inner {
    padding-top: 28px;
  }

  .footer-meta {
    margin-top: 22px;
    padding-top: 16px;
    font-size: 14px;
  }
}
