:root {
  color-scheme: light;
  --bg: #f7fbf9;
  --paper: #ffffff;
  --paper-soft: #eef7f3;
  --ink: #102420;
  --muted: #61746e;
  --line: rgba(42, 84, 74, 0.15);
  --teal: #167c69;
  --teal-deep: #0f5c51;
  --teal-soft: #dff2ec;
  --clay: #b98267;
  --amber: #f4b85d;
  --shadow: 0 24px 70px rgba(23, 70, 60, 0.14);
  --soft-shadow: 0 14px 36px rgba(23, 70, 60, 0.1);
  --radius: 28px;
  --radius-sm: 16px;
  --max: 1180px;
  --ease: cubic-bezier(0.2, 0.8, 0.2, 1);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(247, 251, 249, 0.88) 38%),
    radial-gradient(circle at 72% 18%, rgba(212, 238, 228, 0.7), transparent 31%),
    var(--bg);
  color: var(--ink);
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
}

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

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

button,
input {
  font: inherit;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  width: min(1240px, calc(100% - 32px));
  margin: 16px auto 0;
  padding: 12px 14px 12px 16px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 12px 40px rgba(24, 65, 57, 0.08);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--teal-deep);
  font-size: 16px;
  font-weight: 760;
  letter-spacing: 0;
  white-space: nowrap;
}

.nav-links {
  display: flex;
  justify-content: center;
  gap: clamp(14px, 2vw, 26px);
  color: rgba(16, 36, 32, 0.72);
  font-size: 13px;
  font-weight: 650;
}

.nav-links a {
  transition: color 180ms var(--ease);
}

.nav-links a:hover {
  color: var(--teal-deep);
}

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 760;
  line-height: 1;
  white-space: nowrap;
  transition:
    transform 180ms var(--ease),
    box-shadow 180ms var(--ease),
    background 180ms var(--ease);
}

.header-cta {
  padding: 0 18px;
  background: var(--ink);
  color: white;
  box-shadow: 0 10px 24px rgba(16, 36, 32, 0.14);
}

.button {
  border: 0;
  cursor: pointer;
  padding: 0 22px;
}

.button:hover,
.header-cta:hover {
  transform: translateY(-1px);
}

.button-primary {
  background: var(--teal);
  color: white;
  box-shadow: 0 16px 30px rgba(22, 124, 105, 0.22);
}

.button-primary:hover {
  background: var(--teal-deep);
}

.button-secondary {
  border: 1px solid rgba(16, 36, 32, 0.14);
  background: rgba(255, 255, 255, 0.74);
  color: var(--ink);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  background: rgba(237, 247, 243, 0.9);
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  border-radius: 2px;
  background: var(--ink);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(520px, 1.35fr);
  align-items: center;
  gap: 34px;
  min-height: calc(100vh - 92px);
  padding: 42px 0 56px;
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 580px;
}

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

h1 {
  max-width: 660px;
  font-size: clamp(48px, 6.1vw, 86px);
  font-weight: 760;
  letter-spacing: 0;
  line-height: 0.93;
}

h2 {
  font-size: clamp(34px, 4.2vw, 58px);
  font-weight: 740;
  letter-spacing: 0;
  line-height: 1.02;
}

h3 {
  font-size: 20px;
  font-weight: 740;
  line-height: 1.2;
}

.hero-subtitle {
  max-width: 555px;
  margin-top: 24px;
  color: var(--muted);
  font-size: clamp(17px, 1.4vw, 20px);
  line-height: 1.62;
}

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

.positioning-line {
  max-width: 430px;
  margin-top: 24px;
  color: var(--teal-deep);
  font-size: 14px;
  font-weight: 760;
  line-height: 1.45;
}

.hero-media {
  position: relative;
  min-height: 520px;
  border-radius: var(--radius);
  isolation: isolate;
}

.hero-media::after {
  position: absolute;
  inset: 16% -2% -5% 14%;
  z-index: -1;
  border-radius: 42px;
  background: rgba(255, 255, 255, 0.52);
  box-shadow: var(--shadow);
  content: "";
}

.hero-media img {
  width: 100%;
  height: min(64vh, 640px);
  min-height: 510px;
  object-fit: cover;
  object-position: center;
  border-radius: 34px;
  box-shadow: var(--shadow);
}

.evidence-card {
  position: absolute;
  width: min(260px, 34vw);
  padding: 16px 17px;
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: var(--soft-shadow);
  backdrop-filter: blur(18px);
  animation: floatCard 5.5s var(--ease) infinite;
}

.evidence-card span {
  display: block;
  color: var(--teal);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.evidence-card strong {
  display: block;
  margin-top: 7px;
  font-size: 16px;
  line-height: 1.15;
}

.evidence-card small {
  display: block;
  margin-top: 7px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.35;
}

.card-top {
  top: 10%;
  left: -18px;
}

.card-mid {
  right: -18px;
  top: 44%;
  animation-delay: -1.3s;
}

.card-low {
  bottom: 8%;
  left: 12%;
  animation-delay: -2.6s;
}

.signal-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  width: min(980px, calc(100% - 40px));
  margin: -18px auto 84px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--line);
  box-shadow: 0 18px 50px rgba(30, 76, 67, 0.08);
}

.signal-strip p {
  padding: 18px 20px;
  background: rgba(255, 255, 255, 0.68);
  color: var(--teal-deep);
  font-size: 13px;
  font-weight: 760;
  text-align: center;
}

.architecture-section,
.evidence-section,
.vet-section,
.privacy-section,
.faq-section,
.launch-section {
  padding: 86px 0;
}

.section-heading {
  max-width: 760px;
}

.section-heading p,
.architecture-copy p,
.baseline-header p,
.vet-copy p,
.privacy-copy p,
.launch-card p {
  margin-top: 18px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}

.lens-path p,
.safety-list p,
.faq-list p {
  margin-top: 12px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.58;
}

.architecture-section {
  position: relative;
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  align-items: center;
  gap: 40px;
}

.section-anchor {
  position: absolute;
  top: -110px;
  display: block;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.text-link {
  display: inline-flex;
  margin-top: 24px;
  color: var(--teal);
  font-size: 14px;
  font-weight: 800;
}

.architecture-visual {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.74);
  border-radius: 34px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.92), rgba(226, 244, 237, 0.72)),
    radial-gradient(circle at 52% 48%, rgba(126, 201, 183, 0.35), transparent 34%);
  box-shadow: var(--shadow);
}

.architecture-visual::before {
  position: absolute;
  inset: 42px;
  border: 1px dashed rgba(22, 124, 105, 0.2);
  border-radius: 28px;
  content: "";
}

.architecture-product {
  position: absolute;
  inset: 72px 58px 58px;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.55);
  box-shadow: 0 24px 54px rgba(22, 64, 56, 0.15);
}

.architecture-product::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(247, 251, 249, 0.74), transparent 38%, rgba(247, 251, 249, 0.16)),
    radial-gradient(circle at 73% 45%, transparent 0 32%, rgba(247, 251, 249, 0.18) 52%);
  content: "";
}

.architecture-product img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.02);
}

.lens-path {
  position: absolute;
  max-width: 218px;
  padding: 18px;
  border: 1px solid rgba(22, 124, 105, 0.14);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: var(--soft-shadow);
  backdrop-filter: blur(14px);
}

.lens-path strong {
  color: var(--teal-deep);
}

.identity {
  top: 54px;
  left: 38px;
}

.bowl {
  right: 38px;
  bottom: 46px;
}

.scan-line {
  position: absolute;
  top: 0;
  left: 16%;
  width: 2px;
  height: 100%;
  background: linear-gradient(180deg, transparent, rgba(22, 124, 105, 0.3), transparent);
  animation: scan 4.2s var(--ease) infinite;
}

.baseline-section {
  padding: 90px 0;
  background:
    linear-gradient(180deg, rgba(231, 245, 239, 0.76), rgba(247, 251, 249, 0.94)),
    var(--paper-soft);
}

.baseline-grid {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 24px;
  align-items: stretch;
}

.baseline-panel,
.trend-carousel,
.launch-card {
  border: 1px solid rgba(255, 255, 255, 0.76);
  border-radius: 34px;
  background: rgba(255, 255, 255, 0.74);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.baseline-panel {
  padding: 34px;
}

.metric-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px 20px;
  align-items: baseline;
  width: 100%;
  margin-top: 18px;
  padding: 18px 0 0;
  border-top: 1px solid var(--line);
  border-right: 0;
  border-bottom: 0;
  border-left: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
  font: inherit;
  text-align: left;
  transition: background 0.24s var(--ease), border-color 0.24s var(--ease), padding 0.24s var(--ease);
}

.metric-row.is-active {
  padding: 18px 16px 14px;
  border-color: transparent;
  border-radius: 20px;
  background: rgba(219, 241, 235, 0.72);
  outline: 1px solid rgba(22, 124, 105, 0.12);
}

.metric-row:focus-visible {
  outline: 3px solid rgba(22, 124, 105, 0.22);
  outline-offset: 3px;
}

.metric-row span {
  color: var(--muted);
  font-size: 14px;
  font-weight: 730;
}

.metric-row strong {
  color: var(--teal-deep);
  font-size: 34px;
}

.metric-row small {
  grid-column: 1 / -1;
  color: var(--muted);
}

.trend-carousel {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 22px;
  overflow: hidden;
}

.trend-controls {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}

.trend-controls button {
  min-height: 38px;
  padding: 9px 14px;
  border: 1px solid rgba(22, 124, 105, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.58);
  color: var(--muted);
  cursor: pointer;
  font: inherit;
  font-size: 13px;
  font-weight: 780;
  transition: background 0.22s var(--ease), color 0.22s var(--ease), transform 0.22s var(--ease);
}

.trend-controls button.is-active {
  background: var(--ink);
  color: white;
}

.trend-controls button:focus-visible {
  outline: 3px solid rgba(22, 124, 105, 0.22);
  outline-offset: 3px;
}

.trend-card {
  display: none;
  padding: 26px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.46);
  min-height: 430px;
  opacity: 0;
  transform: translateX(18px);
  transition: opacity 0.36s var(--ease), transform 0.36s var(--ease);
}

.trend-card.is-active {
  display: block;
  opacity: 1;
  transform: translateX(0);
}

.trend-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}

.trend-top span {
  color: var(--teal-deep);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.trend-top strong {
  padding: 8px 12px;
  border-radius: 999px;
  background: var(--teal-soft);
  color: var(--teal-deep);
  font-size: 13px;
}

.trend-note {
  max-width: 480px;
  margin: 0 0 10px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
}

.trend-card svg {
  width: 100%;
  height: auto;
}

.baseline-band {
  fill: rgba(126, 201, 183, 0.16);
}

.trend-area {
  fill: url("#area");
}

.trend-line {
  fill: none;
  stroke: var(--teal);
  stroke-linecap: round;
  stroke-width: 6;
}

.amber-area {
  fill: rgba(207, 154, 59, 0.16);
}

.amber-line {
  stroke: #c58b2c;
}

.red-area {
  fill: rgba(154, 99, 91, 0.16);
}

.red-line {
  stroke: #9a635b;
}

.clay-area {
  fill: rgba(185, 112, 83, 0.15);
}

.clay-line {
  stroke: #b97053;
}

.trend-card circle {
  fill: #b97053;
  stroke: rgba(255, 255, 255, 0.88);
  stroke-width: 4;
}

.trend-card line {
  stroke: rgba(16, 36, 32, 0.16);
  stroke-dasharray: 6 8;
}

.trend-card text {
  fill: var(--muted);
  font-size: 18px;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, minmax(210px, 1fr));
  gap: 16px;
  margin-top: 42px;
  overflow-x: auto;
  padding-bottom: 6px;
}

.timeline article {
  min-width: 210px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.74);
  box-shadow: 0 16px 34px rgba(22, 74, 65, 0.08);
}

.clip-thumb {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border-radius: 17px;
  background:
    linear-gradient(180deg, rgba(16, 36, 32, 0), rgba(16, 36, 32, 0.18)),
    rgba(231, 245, 239, 0.72);
  background-position: center;
  background-size: cover;
}

.clip-thumb.normal {
  background-image:
    linear-gradient(180deg, rgba(16, 36, 32, 0), rgba(16, 36, 32, 0.18)),
    url("assets/evidence-normal.png");
}

.clip-thumb.interest {
  background-image:
    linear-gradient(180deg, rgba(16, 36, 32, 0), rgba(16, 36, 32, 0.18)),
    url("assets/evidence-approach.png");
}

.clip-thumb.pause {
  background-image:
    linear-gradient(180deg, rgba(16, 36, 32, 0), rgba(16, 36, 32, 0.2)),
    url("assets/evidence-pause.png");
}

.clip-thumb.shared {
  background-image:
    linear-gradient(180deg, rgba(16, 36, 32, 0), rgba(16, 36, 32, 0.2)),
    url("assets/evidence-shared.png");
}

.clip-thumb::before {
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(255, 255, 255, 0.66);
  border-radius: 13px;
  box-shadow: inset 0 0 0 1px rgba(22, 124, 105, 0.14);
  content: "";
}

.clip-thumb::after {
  position: absolute;
  right: 12px;
  bottom: 10px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background:
    linear-gradient(90deg, transparent 38%, white 38% 62%, transparent 62%),
    rgba(16, 36, 32, 0.76);
  clip-path: polygon(32% 24%, 74% 50%, 32% 76%);
  content: "";
}

.clip-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(232, 248, 240, 0.9);
  color: var(--teal-deep);
  font-size: 11px;
  font-weight: 820;
  letter-spacing: 0;
  box-shadow: 0 10px 22px rgba(16, 36, 32, 0.12);
}

.clip-badge.warning {
  background: rgba(255, 242, 209, 0.92);
  color: #8a5b12;
}

.clip-badge.alert {
  background: rgba(255, 232, 223, 0.92);
  color: #8b4936;
}

.clip-badge.shared-badge {
  background: rgba(16, 36, 32, 0.88);
  color: white;
}

.bowl-meter {
  position: absolute;
  right: 16px;
  bottom: 16px;
  z-index: 2;
  width: 76px;
  height: 18px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.54);
  box-shadow: 0 10px 20px rgba(16, 36, 32, 0.14);
}

.bowl-meter span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #78c9b7, #0c6f62);
}

.bowl-meter.full span {
  width: 88%;
}

.bowl-meter.low span {
  width: 22%;
  background: linear-gradient(90deg, #d5a24b, #b97053);
}

.clip-track {
  position: absolute;
  inset: auto auto 20px 18px;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 7px;
}

.clip-track span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 0 0 5px rgba(22, 124, 105, 0.16);
}

.normal-track span:nth-child(2) {
  transform: translateY(-7px);
}

.normal-track span:nth-child(3) {
  transform: translateY(-13px);
}

.leave-track {
  left: 24px;
  bottom: 24px;
}

.leave-track span {
  background: rgba(213, 162, 75, 0.94);
  box-shadow: 0 0 0 5px rgba(213, 162, 75, 0.18);
}

.leave-track span:nth-child(2) {
  transform: translate(26px, -15px);
}

.leave-track span:nth-child(3) {
  transform: translate(58px, -2px);
}

.pause-marker {
  position: absolute;
  top: 50%;
  right: 22%;
  z-index: 2;
  width: 42px;
  height: 42px;
  border: 2px solid rgba(185, 112, 83, 0.9);
  border-radius: 50%;
  background: rgba(255, 232, 223, 0.34);
  box-shadow: 0 0 0 10px rgba(185, 112, 83, 0.12);
  transform: translateY(-50%);
}

.pause-marker::before,
.pause-marker::after {
  position: absolute;
  top: 11px;
  width: 5px;
  height: 18px;
  border-radius: 999px;
  background: #8b4936;
  content: "";
}

.pause-marker::before {
  left: 13px;
}

.pause-marker::after {
  right: 13px;
}

.head-angle {
  position: absolute;
  right: 58px;
  bottom: 36px;
  z-index: 2;
  width: 86px;
  height: 2px;
  background: rgba(139, 73, 54, 0.86);
  transform: rotate(-16deg);
  transform-origin: right center;
}

.head-angle::before {
  position: absolute;
  right: -4px;
  top: -5px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #8b4936;
  content: "";
}

.report-card-mini {
  position: absolute;
  right: 18px;
  bottom: 18px;
  z-index: 2;
  width: 88px;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.74);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 14px 26px rgba(16, 36, 32, 0.18);
}

.report-card-mini span {
  display: block;
  height: 5px;
  margin-top: 6px;
  border-radius: 999px;
  background: rgba(22, 124, 105, 0.26);
}

.report-card-mini span:first-child {
  width: 72%;
  margin-top: 0;
  background: rgba(22, 124, 105, 0.58);
}

.report-card-mini span:nth-child(2) {
  width: 100%;
}

.report-card-mini span:nth-child(3) {
  width: 54%;
}

.timeline article > span {
  display: block;
  margin-top: 14px;
  color: var(--ink);
  font-size: 15px;
  font-weight: 760;
}

.timeline article > strong {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 12px;
}

.vet-section {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  gap: 46px;
}

.vet-report-mock {
  position: relative;
  overflow: hidden;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.76);
  border-radius: 34px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.94), rgba(233, 247, 242, 0.76)),
    var(--paper);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.vet-report-mock::before {
  position: absolute;
  inset: auto -12% -18% 36%;
  z-index: -1;
  height: 42%;
  border-radius: 50%;
  background: rgba(126, 201, 183, 0.28);
  content: "";
}

.report-topbar,
.report-main,
.report-footer-row {
  position: relative;
  z-index: 1;
}

.report-topbar {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: flex-start;
  margin-bottom: 18px;
}

.report-topbar span,
.report-chart span {
  display: block;
  color: var(--teal);
  font-size: 11px;
  font-weight: 830;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.report-topbar strong {
  display: block;
  margin-top: 6px;
  font-size: 23px;
  line-height: 1.12;
}

.report-topbar button {
  min-height: 40px;
  border: 1px solid rgba(16, 36, 32, 0.13);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--ink);
  cursor: default;
  padding: 0 15px;
  font-size: 12px;
  font-weight: 760;
}

.report-main {
  display: grid;
  grid-template-columns: 1fr 190px;
  gap: 14px;
  align-items: stretch;
}

.report-chart,
.report-summary,
.report-clips article {
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.7);
}

.report-chart {
  padding: 18px;
}

.report-chart svg {
  width: 100%;
  height: auto;
  margin-top: 10px;
}

.report-chart path {
  fill: none;
  stroke: var(--teal);
  stroke-linecap: round;
  stroke-width: 5;
}

.report-chart line {
  stroke: rgba(16, 36, 32, 0.16);
  stroke-dasharray: 6 8;
}

.report-chart text {
  fill: var(--muted);
  font-size: 16px;
}

.report-summary {
  padding: 18px;
}

.report-summary strong {
  display: block;
  color: var(--teal-deep);
  font-size: 13px;
}

.report-summary p {
  margin-top: 18px;
  color: var(--ink);
  font-size: 20px;
  font-weight: 760;
  line-height: 1.2;
}

.report-summary small {
  display: block;
  margin-top: 12px;
  color: var(--muted);
  line-height: 1.35;
}

.report-clips {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 14px;
}

.report-clips article {
  padding: 10px;
}

.report-clips .clip-thumb {
  border-radius: 15px;
}

.report-clips .clip-thumb.normal {
  background:
    linear-gradient(180deg, rgba(232, 248, 240, 0.18), rgba(6, 96, 82, 0.2)),
    url("assets/evidence-normal.png");
  background-position: center;
  background-size: cover;
}

.report-clips .clip-thumb.interest {
  background:
    linear-gradient(180deg, rgba(255, 244, 217, 0.12), rgba(197, 139, 44, 0.26)),
    url("assets/evidence-approach.png");
  background-position: center;
  background-size: cover;
}

.report-clips .clip-thumb.pause {
  background:
    linear-gradient(180deg, rgba(255, 232, 223, 0.1), rgba(139, 73, 54, 0.28)),
    url("assets/evidence-pause.png");
  background-position: center;
  background-size: cover;
}

.report-clips .clip-thumb::after {
  right: 7px;
  bottom: 7px;
  width: 22px;
  height: 22px;
}

.report-clips .clip-badge {
  top: 8px;
  left: 8px;
  padding: 5px 7px;
  font-size: 9px;
}

.report-clips .bowl-meter {
  right: 9px;
  bottom: 9px;
  width: 50px;
  height: 12px;
}

.report-clip-signal {
  position: absolute;
  left: 9px;
  bottom: 10px;
  z-index: 3;
  display: flex;
  align-items: flex-end;
  gap: 4px;
}

.report-clip-signal i {
  display: block;
  width: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 0 0 3px rgba(22, 124, 105, 0.14);
}

.normal-signal i:first-child {
  height: 9px;
}

.normal-signal i:nth-child(2) {
  height: 15px;
}

.normal-signal i:nth-child(3) {
  height: 21px;
}

.interest-signal {
  bottom: 12px;
}

.interest-signal i {
  width: 9px;
  height: 9px;
  background: #d5a24b;
  box-shadow: 0 0 0 4px rgba(213, 162, 75, 0.22);
}

.interest-signal i:nth-child(2) {
  transform: translate(15px, -10px);
}

.interest-signal i:nth-child(3) {
  transform: translate(31px, 1px);
}

.exit-arrow {
  position: absolute;
  right: 13px;
  top: 50%;
  z-index: 3;
  width: 36px;
  height: 2px;
  background: rgba(138, 91, 18, 0.82);
  transform: translateY(-50%);
}

.exit-arrow::after {
  position: absolute;
  right: -1px;
  top: -5px;
  width: 10px;
  height: 10px;
  border-top: 2px solid rgba(138, 91, 18, 0.82);
  border-right: 2px solid rgba(138, 91, 18, 0.82);
  transform: rotate(45deg);
  content: "";
}

.report-clips .pause-marker {
  right: 16%;
  width: 28px;
  height: 28px;
}

.report-clips .pause-marker::before,
.report-clips .pause-marker::after {
  top: 7px;
  height: 13px;
}

.report-clips .pause-marker::before {
  left: 8px;
}

.report-clips .pause-marker::after {
  right: 8px;
}

.pause-signal {
  right: 50px;
  left: auto;
  bottom: 12px;
  gap: 3px;
}

.pause-signal i {
  width: 6px;
  height: 18px;
  background: #8b4936;
  box-shadow: none;
}

.pause-signal i:nth-child(2) {
  height: 8px;
  opacity: 0.5;
}

.pause-signal i:nth-child(3) {
  height: 18px;
}

.report-clips article > span {
  display: block;
  margin-top: 10px;
  color: var(--ink);
  font-size: 12px;
  font-weight: 760;
  line-height: 1.25;
}

.report-footer-row {
  display: flex;
  gap: 16px;
  align-items: center;
  margin-top: 16px;
  padding: 16px;
  border: 1px solid rgba(22, 124, 105, 0.14);
  border-radius: 22px;
  background: rgba(223, 242, 236, 0.52);
}

.report-footer-row p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.report-device-inline {
  display: flex;
  flex: 0 0 auto;
  gap: 9px;
  align-items: center;
  justify-content: center;
  width: 84px;
  height: 44px;
  border-radius: 24px;
  background: linear-gradient(145deg, #ffffff, #dce9e5);
  box-shadow: inset 0 -8px 16px rgba(22, 64, 56, 0.08);
}

.report-device-inline span {
  width: 20px;
  height: 20px;
  border: 4px solid #14211f;
  border-radius: 50%;
  background: radial-gradient(circle at 40% 38%, #8cd0c4 0 14%, #102420 15% 100%);
}

.vet-copy ul {
  display: grid;
  gap: 14px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.vet-copy li {
  position: relative;
  padding-left: 28px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.5;
}

.vet-copy li::before {
  position: absolute;
  top: 0.36em;
  left: 0;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 0 6px rgba(22, 124, 105, 0.12);
  content: "";
}

.privacy-section {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 34px;
  align-items: start;
}

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

.safety-list article {
  min-height: 220px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.68);
  box-shadow: 0 14px 34px rgba(22, 74, 65, 0.06);
}

.blog-hero {
  padding: 92px 0 54px;
}

.blog-hero h1 {
  max-width: 820px;
  margin: 0;
  font-size: clamp(46px, 7vw, 84px);
  line-height: 0.94;
}

.blog-hero p {
  max-width: 720px;
  margin: 26px 0 0;
  color: var(--muted);
  font-size: 20px;
  line-height: 1.6;
}

.article-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  padding-bottom: 88px;
}

.article-card {
  display: flex;
  min-height: 280px;
  flex-direction: column;
  justify-content: space-between;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 14px 34px rgba(22, 74, 65, 0.06);
  transition: transform 0.24s var(--ease), box-shadow 0.24s var(--ease);
}

.article-card:hover {
  box-shadow: var(--soft-shadow);
  transform: translateY(-3px);
}

.article-card span,
.article-meta {
  color: var(--teal);
  font-size: 11px;
  font-weight: 830;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.article-card h2 {
  margin: 34px 0 0;
  font-size: 25px;
  line-height: 1.08;
}

.article-card p {
  margin: 16px 0 0;
  color: var(--muted);
  line-height: 1.55;
}

.article-page {
  max-width: 820px;
  padding: 78px 0 96px;
}

.article-page h1 {
  margin: 14px 0 0;
  font-size: clamp(42px, 6vw, 72px);
  line-height: 0.98;
}

.article-page .lede {
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 21px;
  line-height: 1.55;
}

.article-body {
  margin-top: 42px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
}

.article-body h2 {
  margin: 34px 0 12px;
  font-size: 28px;
}

.article-body p,
.article-body li {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.72;
}

.article-body ul {
  padding-left: 22px;
}

.article-note {
  margin-top: 34px;
  padding: 20px;
  border: 1px solid rgba(22, 124, 105, 0.16);
  border-radius: 20px;
  background: rgba(223, 242, 236, 0.52);
  color: var(--muted);
}

.back-link {
  display: inline-flex;
  margin-bottom: 30px;
  color: var(--teal-deep);
  font-weight: 780;
}

.faq-list {
  display: grid;
  gap: 12px;
  margin-top: 34px;
}

.faq-list details {
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.74);
  box-shadow: 0 12px 28px rgba(22, 74, 65, 0.05);
}

.faq-list summary {
  cursor: pointer;
  padding: 22px 24px;
  color: var(--ink);
  font-size: 17px;
  font-weight: 760;
  list-style: none;
}

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

.faq-list p {
  padding: 0 24px 22px;
}

.launch-section {
  padding-bottom: 120px;
}

.launch-card {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 38px;
  align-items: center;
  padding: clamp(28px, 5vw, 56px);
}

.launch-form label {
  display: block;
  margin-bottom: 10px;
  color: var(--teal-deep);
  font-size: 13px;
  font-weight: 800;
}

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

.launch-form input {
  width: 100%;
  min-height: 54px;
  border: 1px solid rgba(16, 36, 32, 0.13);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.86);
  color: var(--ink);
  outline: none;
  padding: 0 18px;
  font-size: 15px;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.6);
}

.launch-form input:focus {
  border-color: rgba(22, 124, 105, 0.5);
  box-shadow: 0 0 0 4px rgba(22, 124, 105, 0.12);
}

.form-note {
  min-height: 22px;
  margin-top: 12px !important;
  font-size: 13px !important;
}

.form-note.success {
  color: var(--teal-deep);
  font-weight: 760;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  padding: 26px 0 40px;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.site-footer p {
  margin-top: 12px;
  font-size: 14px;
}

.footer-brand {
  display: block;
  color: var(--teal-deep);
  font-size: 16px;
  font-weight: 800;
}

.footer-legal {
  display: grid;
  gap: 10px;
  justify-items: end;
  color: var(--muted);
  font-size: 13px;
}

.footer-legal a {
  color: var(--teal-deep);
  font-weight: 760;
}

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

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

@keyframes floatCard {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

@keyframes scan {
  0%,
  100% {
    left: 16%;
    opacity: 0;
  }

  16%,
  78% {
    opacity: 1;
  }

  50% {
    left: 78%;
  }
}

@media (max-width: 1020px) {
  .site-header {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .nav-toggle {
    display: block;
  }

  .nav-links,
  .header-cta {
    display: none;
  }

  .nav-open .nav-links {
    position: fixed;
    top: 78px;
    left: 20px;
    right: 20px;
    z-index: 30;
    display: grid;
    gap: 0;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: var(--shadow);
    backdrop-filter: blur(18px);
  }

  .nav-open .nav-links a {
    padding: 18px 22px;
    border-bottom: 1px solid var(--line);
  }

  .hero,
  .architecture-section,
  .baseline-grid,
  .vet-section,
  .privacy-section,
  .launch-card {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 54px;
  }

  .hero-media {
    min-height: 430px;
  }

  .hero-media img {
    min-height: 0;
    height: 430px;
  }

  .safety-list,
  .article-grid {
    grid-template-columns: 1fr;
  }

  .blog-hero {
    padding: 58px 0 34px;
  }

  .article-page {
    padding: 52px 0 72px;
  }

  .report-main {
    grid-template-columns: 1fr;
  }

  .timeline {
    grid-template-columns: repeat(4, 260px);
  }
}

@media (max-width: 720px) {
  .section-shell {
    width: min(100% - 28px, var(--max));
  }

  .site-header {
    width: calc(100% - 24px);
    margin-top: 10px;
    padding: 9px 10px 9px 12px;
  }

  .brand {
    font-size: 14px;
  }

  .hero {
    gap: 28px;
    padding: 34px 0 28px;
  }

  h1 {
    font-size: clamp(38px, 11.5vw, 54px);
    line-height: 0.96;
  }

  h2 {
    font-size: clamp(31px, 9vw, 44px);
  }

  .hero-subtitle,
  .section-heading p,
  .architecture-copy p,
  .baseline-header p,
  .vet-copy p,
  .privacy-copy p,
  .launch-card p {
    font-size: 16px;
  }

  .hero-subtitle {
    margin-top: 18px;
    line-height: 1.52;
  }

  .hero-actions {
    display: flex;
    flex-wrap: nowrap;
    gap: 9px;
    margin-top: 22px;
  }

  .hero-actions .button {
    width: auto;
    flex: 1;
    min-height: 44px;
    padding: 0 12px;
    font-size: 12px;
  }

  .positioning-line {
    display: none;
  }

  .form-row {
    grid-template-columns: 1fr;
    display: grid;
  }

  .button,
  .header-cta {
    width: 100%;
  }

  .hero-actions .button {
    width: auto;
  }

  .hero-media {
    min-height: 288px;
  }

  .hero-media img {
    min-height: 0;
    height: 288px;
    object-position: 58% center;
    border-radius: 26px;
  }

  .evidence-card {
    position: absolute;
    width: calc(100% - 28px);
    margin-top: 0;
    animation: none;
  }

  .card-top {
    top: 14px;
    left: 14px;
    right: auto;
    bottom: auto;
  }

  .card-mid,
  .card-low {
    display: none;
  }

  .signal-strip {
    grid-template-columns: 1fr;
    border-radius: 24px;
    margin-bottom: 44px;
  }

  .architecture-section,
  .evidence-section,
  .vet-section,
  .privacy-section,
  .faq-section,
  .launch-section,
  .baseline-section {
    padding: 58px 0;
  }

  .architecture-visual {
    min-height: 520px;
  }

  .architecture-product {
    inset: 76px 18px 110px;
    border-radius: 24px;
  }

  .architecture-product img {
    object-position: 66% 58%;
    transform: scale(1.12);
  }

  .identity {
    top: 30px;
    left: 22px;
  }

  .bowl {
    right: 22px;
    bottom: 28px;
  }

  .baseline-panel,
  .trend-carousel,
  .trend-card {
    padding: 22px;
    border-radius: 26px;
  }

  .trend-carousel {
    gap: 4px;
  }

  .trend-controls button {
    flex: 1 1 130px;
  }

  .trend-card {
    min-height: 360px;
  }

  .vet-report-mock {
    padding: 16px;
    border-radius: 24px;
  }

  .report-topbar,
  .report-footer-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .report-topbar button {
    width: 100%;
  }

  .report-clips {
    grid-template-columns: 1fr;
  }

  .launch-card {
    padding: 24px;
    border-radius: 26px;
  }

  .site-footer {
    flex-direction: column;
  }

  .footer-legal {
    justify-items: start;
  }
}

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

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