:root {
  --bg: #060d1a;
  --navy: #0f2b5b;
  --navy-2: #102447;
  --gold: #e8a020;
  --white: #ffffff;
  --text: rgba(255, 255, 255, 0.9);
  --muted: rgba(255, 255, 255, 0.72);
  --soft: rgba(255, 255, 255, 0.54);
  --glass: rgba(255, 255, 255, 0.06);
  --glass-strong: rgba(255, 255, 255, 0.1);
  --border: rgba(255, 255, 255, 0.14);
  --blue-glow: #4a7dff;
  --danger: #ff5d46;
  --shadow: rgba(0, 0, 0, 0.42);
  --max: 1180px;
  --radius: 8px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --font-body: "Inter", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  --font-display: "Sora", var(--font-body);
  --font-doodle: "Caveat", cursive;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 20% 0%, rgba(74, 125, 255, 0.2), transparent 28rem),
    radial-gradient(circle at 80% 15%, rgba(232, 160, 32, 0.13), transparent 24rem),
    linear-gradient(180deg, #050912 0%, var(--bg) 34%, #07111f 100%);
  color: var(--text);
  font-family: var(--font-body);
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 50% 40%, rgba(255, 255, 255, 0.035), transparent 30rem),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025), transparent 35%, rgba(255, 255, 255, 0.018));
  z-index: -4;
}

a {
  color: inherit;
}

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

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#particle-canvas {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
  pointer-events: none;
}

.noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.15;
  z-index: -1;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: radial-gradient(circle at center, black, transparent 85%);
}

.glow {
  filter: blur(4px);
}

.page-glow {
  position: fixed;
  width: 34rem;
  height: 34rem;
  border-radius: 999px;
  pointer-events: none;
  z-index: -3;
}

.glow-one {
  left: -12rem;
  top: 18vh;
  background: radial-gradient(circle, rgba(74, 125, 255, 0.2), transparent 64%);
}

.glow-two {
  right: -14rem;
  top: 52vh;
  background: radial-gradient(circle, rgba(232, 160, 32, 0.15), transparent 66%);
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px clamp(18px, 4vw, 54px);
  background: linear-gradient(180deg, rgba(6, 13, 26, 0.82), rgba(6, 13, 26, 0));
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  text-decoration: none;
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: 0.03em;
}

.brand-mark img {
  width: 50px;
  height: 50px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.9);
  padding: 4px;
  box-shadow: 0 12px 40px rgba(74, 125, 255, 0.22);
}

.story-rail {
  position: fixed;
  z-index: 22;
  left: 22px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.rail-dot {
  position: relative;
  width: 12px;
  height: 12px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  cursor: pointer;
  transition: transform 300ms var(--ease), background 300ms var(--ease), border-color 300ms var(--ease);
}

.rail-dot::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 100%;
  width: 1px;
  height: 14px;
  background: rgba(255, 255, 255, 0.16);
}

.rail-dot:last-child::before {
  display: none;
}

.rail-dot span {
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%) translateX(-8px);
  opacity: 0;
  pointer-events: none;
  white-space: nowrap;
  font-size: 12px;
  color: var(--muted);
  transition: 240ms var(--ease);
}

.rail-dot:hover span,
.story-rail:hover .rail-dot.is-active span {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}

.rail-dot.is-active {
  background: var(--gold);
  border-color: var(--gold);
  transform: scale(1.35);
}

.section {
  position: relative;
  min-height: 100vh;
  padding: clamp(86px, 11vw, 150px) clamp(22px, 6vw, 80px);
  overflow: hidden;
}

.section > * {
  position: relative;
  z-index: 2;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(420px, 1.12fr);
  align-items: start;
  gap: clamp(24px, 4vw, 58px);
  min-height: 100dvh;
  padding-top: clamp(82px, 6vw, 104px);
  padding-bottom: clamp(28px, 5vw, 64px);
}

.hero-bg-layer {
  position: absolute;
  inset: -10%;
  z-index: 0;
  background:
    radial-gradient(circle at 65% 38%, rgba(74, 125, 255, 0.2), transparent 24rem),
    radial-gradient(circle at 80% 62%, rgba(232, 160, 32, 0.16), transparent 18rem);
}

.hero-copy {
  max-width: 720px;
  padding-left: clamp(0px, 3vw, 44px);
}

.chapter-label {
  margin: 0 0 18px;
  color: var(--gold);
  font-size: clamp(11px, 0.9vw, 13px);
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.section:not(.hero) .chapter-label {
  margin-bottom: 24px;
  font-size: clamp(22px, 2.1vw, 34px);
  letter-spacing: 0.08em;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: var(--font-display);
  letter-spacing: -0.035em;
  text-wrap: balance;
}

h1 {
  font-size: clamp(40px, 5.7vw, 78px);
  line-height: 0.98;
  max-width: 660px;
}

h1 span {
  display: block;
  color: var(--gold);
  font-size: 0.82em;
  white-space: normal;
  max-width: 610px;
}

h2 {
  font-size: clamp(34px, 5.2vw, 72px);
  line-height: 1.02;
}

h3 {
  font-size: clamp(22px, 3vw, 38px);
  line-height: 1.12;
  color: var(--white);
}

p {
  color: var(--muted);
  font-size: clamp(17px, 1.35vw, 21px);
  line-height: 1.68;
  text-wrap: pretty;
}

.hero-lead {
  max-width: 670px;
  margin: 22px 0 0;
  font-size: clamp(18px, 1.6vw, 24px);
}

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

.primary-button,
.ghost-button,
.text-link {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0 22px;
  border: 0;
  font: 800 14px/1 var(--font-body);
  text-decoration: none;
  cursor: pointer;
  transition: transform 300ms var(--ease), background 300ms var(--ease), color 300ms var(--ease);
}

.primary-button {
  color: #120c02;
  background: var(--gold);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.12), 0 16px 32px rgba(232, 160, 32, 0.18);
}

.ghost-button {
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--border);
  backdrop-filter: blur(14px);
}

.text-link {
  color: var(--white);
  padding-inline: 6px;
}

.primary-button:hover,
.ghost-button:hover,
.text-link:hover {
  transform: translateY(-2px);
}

.hero-stage {
  min-height: min(78vh, 700px);
  perspective: 1400px;
  margin-top: clamp(22px, 5vw, 66px);
}

.portrait-stack {
  position: relative;
  height: min(72vh, 680px);
}

.hero-photo {
  position: absolute;
  margin: 0;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.04);
}

.hero-photo-chef {
  left: 0;
  top: 10%;
  width: 41%;
  height: 62%;
  transform: rotate(-5deg);
}

.hero-photo-chef img {
  object-position: 50% 34%;
}

.media-card img {
  object-position: 50% 18%;
}

.hero-photo-dog {
  right: 7%;
  top: -1%;
  width: 55%;
  height: 79%;
  transform: rotate(3deg);
  box-shadow: 0 34px 120px rgba(0, 0, 0, 0.52);
}

.hero-photo-dog img,
.scrap-photo img {
  object-position: 50% 42%;
}

.doodle {
  font-family: var(--font-doodle);
  color: rgba(255, 255, 255, 0.96);
  font-size: clamp(25px, 3vw, 42px);
  line-height: 0.95;
  text-shadow:
    0 1px 0 rgba(255, 255, 255, 0.24),
    0 5px 18px rgba(0, 0, 0, 0.42);
}

.doodle::after {
  content: "";
  display: block;
  width: 72%;
  height: 8px;
  margin-top: 2px;
  border-bottom: 2px solid currentColor;
  border-radius: 50%;
  transform: rotate(-2deg) scaleX(0);
  transform-origin: left;
  transition: transform 900ms var(--ease) 250ms;
}

.doodle.is-drawn::after,
.reveal.is-visible .doodle::after {
  transform: rotate(-2deg) scaleX(1);
}

.hero-note {
  position: absolute;
  z-index: 7;
  max-width: 250px;
  pointer-events: none;
  padding: 6px 10px;
  font-size: clamp(24px, 2.4vw, 34px);
  line-height: 0.92;
  background:
    repeating-linear-gradient(
      to bottom,
      rgba(255, 255, 255, 0.035) 0 1px,
      transparent 1px 13px
    );
  border-radius: 8px;
}

.hero-note::before {
  content: "";
  position: absolute;
  width: 78px;
  height: 38px;
  border-bottom: 1.5px solid rgba(255, 255, 255, 0.86);
  border-radius: 50%;
  opacity: 0.75;
}

.note-one { left: 1%; top: -7%; transform: rotate(-7deg); }
.note-one::before { right: -52px; top: 28px; transform: rotate(18deg); }
.note-two { right: -2%; top: -9%; transform: rotate(6deg); }
.note-two::before { left: -62px; top: 34px; transform: rotate(-16deg); }
.note-three { display: none; }
.note-three::before { left: -58px; top: 24px; transform: rotate(-20deg); }
.note-four { display: none; }
.note-four::before { right: -48px; top: 18px; transform: rotate(12deg); }

.hero-proof {
  position: absolute;
  z-index: 6;
  min-width: 210px;
  padding: 15px 17px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.26);
}

.hero-proof span,
.kitchen-evidence span {
  display: block;
  color: var(--gold);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-proof strong {
  display: block;
  margin-top: 6px;
  color: var(--white);
  font: 800 18px/1.1 var(--font-display);
}

.proof-one { left: 9%; bottom: 1%; transform: rotate(-3deg); }
.proof-two { right: 10%; bottom: 1%; transform: rotate(3deg); }

.vet-doodles,
.animal-doodles {
  position: absolute;
  inset: 0;
  z-index: 6;
  pointer-events: none;
}

.vet-doodle,
.animal-doodle {
  position: absolute;
  opacity: 0.52;
  filter: blur(0.12px) drop-shadow(0 1px 0 rgba(255, 255, 255, 0.08));
  animation: doodleFloat 6s ease-in-out infinite;
}

.dog-line {
  left: 47%;
  top: 0;
  width: 70px;
  height: 42px;
  border: 1.5px solid rgba(255,255,255,0.58);
  border-radius: 50% 44% 50% 44%;
}

.dog-line::before,
.dog-line::after {
  content: "";
  position: absolute;
  background: rgba(255,255,255,0.58);
}

.dog-line::before {
  left: 9px;
  top: -11px;
  width: 18px;
  height: 18px;
  border-radius: 60% 20% 60% 20%;
  transform: rotate(-24deg);
}

.dog-line::after {
  right: 9px;
  top: -9px;
  width: 15px;
  height: 16px;
  border-radius: 20% 60% 20% 60%;
  transform: rotate(22deg);
}

.pill-line {
  left: -5%;
  top: 70%;
  width: 86px;
  height: 28px;
  border: 1.5px solid rgba(255,255,255,0.58);
  border-radius: 999px;
  transform: rotate(-18deg);
}

.pill-line::before {
  content: "";
  position: absolute;
  left: 50%;
  top: -2px;
  bottom: -2px;
  border-left: 1.5px solid rgba(255,255,255,0.58);
}

.syringe-line {
  right: -7%;
  top: 67%;
  width: 118px;
  height: 30px;
  border-top: 1.5px solid rgba(255,255,255,0.58);
  transform: rotate(17deg);
}

.syringe-line::before {
  content: "";
  position: absolute;
  left: 12px;
  top: -13px;
  width: 54px;
  height: 21px;
  border: 1.5px solid rgba(255,255,255,0.58);
  border-radius: 4px;
}

.syringe-line::after {
  content: "";
  position: absolute;
  right: 8px;
  top: -9px;
  width: 26px;
  height: 18px;
  border-right: 1.5px solid rgba(255,255,255,0.58);
  border-top: 1.5px solid rgba(255,255,255,0.58);
  transform: skewX(-28deg);
}

.paw-line {
  left: 81%;
  bottom: 11%;
  width: 34px;
  height: 30px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.58);
}

.paw-line::before {
  content: "";
  position: absolute;
  left: -12px;
  top: -18px;
  width: 58px;
  height: 15px;
  background:
    radial-gradient(circle at 8px 8px, rgba(255,255,255,0.58) 0 5px, transparent 6px),
    radial-gradient(circle at 25px 3px, rgba(255,255,255,0.58) 0 5px, transparent 6px),
    radial-gradient(circle at 43px 8px, rgba(255,255,255,0.58) 0 5px, transparent 6px);
}

.margin-thoughts,
.desktop-sketches {
  position: absolute;
  inset: 0;
  z-index: 5;
  pointer-events: none;
}

.thought-note {
  position: absolute;
  display: block;
  max-width: 260px;
  padding: 7px 10px;
  border-radius: 8px;
  background:
    repeating-linear-gradient(
      to bottom,
      rgba(255, 255, 255, 0.035) 0 1px,
      transparent 1px 12px
    );
  color: rgba(255, 255, 255, 0.94);
  font-family: var(--font-doodle);
  font-size: clamp(22px, 2vw, 32px);
  line-height: 0.96;
  text-shadow: 0 5px 18px rgba(0, 0, 0, 0.46);
  transform: rotate(var(--note-rotate, -4deg));
  animation: thoughtDrift 7s ease-in-out infinite;
}

.thought-note::after {
  content: "";
  position: absolute;
  left: 12%;
  right: 18%;
  bottom: 3px;
  height: 8px;
  border-bottom: 1.5px solid rgba(255, 255, 255, 0.82);
  border-radius: 50%;
  transform: rotate(-2deg);
}

.photo-stamp {
  position: absolute;
  z-index: 3;
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  opacity: 0.62;
  filter: saturate(0.82) contrast(1.08);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.34);
}

.photo-stamp::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(6, 13, 26, 0.04), rgba(6, 13, 26, 0.35));
}

.sketch {
  position: absolute;
  opacity: 0.48;
  color: rgba(255, 255, 255, 0.58);
  filter: blur(0.12px) drop-shadow(0 1px 0 rgba(255, 255, 255, 0.08));
  animation: doodleFloat 7s ease-in-out infinite;
}

.sketch-doc {
  width: 64px;
  height: 84px;
  border: 1.5px solid currentColor;
  border-radius: 4px;
}

.sketch-doc::before,
.sketch-doc::after {
  content: "";
  position: absolute;
  left: 13px;
  right: 12px;
  height: 1.5px;
  background: currentColor;
}

.sketch-doc::before { top: 25px; box-shadow: 0 15px 0 currentColor, 0 30px 0 currentColor; }
.sketch-doc::after { right: auto; top: 8px; width: 18px; transform: rotate(-18deg); }

.sketch-chat {
  width: 84px;
  height: 52px;
  border: 1.5px solid currentColor;
  border-radius: 50%;
}

.sketch-chat::after {
  content: "";
  position: absolute;
  right: 10px;
  bottom: -10px;
  width: 22px;
  height: 18px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(22deg);
}

.sketch-alert {
  width: 66px;
  height: 58px;
  border-left: 1.5px solid currentColor;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg);
}

.sketch-alert::after {
  content: "!";
  position: absolute;
  left: 24px;
  top: 7px;
  color: currentColor;
  font: 800 30px/1 var(--font-display);
  transform: rotate(-45deg);
}

.sketch-map-pin {
  width: 42px;
  height: 42px;
  border: 1.5px solid currentColor;
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
}

.sketch-map-pin::after {
  content: "";
  position: absolute;
  inset: 12px;
  border: 1.5px solid currentColor;
  border-radius: 50%;
}

.sketch-heartbeat {
  width: 130px;
  height: 54px;
  border-bottom: 1.5px solid currentColor;
}

.sketch-heartbeat::before {
  content: "";
  position: absolute;
  left: 22px;
  top: 28px;
  width: 86px;
  height: 26px;
  background:
    linear-gradient(135deg, transparent 0 28%, currentColor 29% 31%, transparent 32% 100%),
    linear-gradient(45deg, transparent 0 38%, currentColor 39% 41%, transparent 42% 100%);
}

.sketch-magnifier {
  width: 58px;
  height: 58px;
  border: 1.5px solid currentColor;
  border-radius: 50%;
}

.sketch-magnifier::after {
  content: "";
  position: absolute;
  right: -28px;
  bottom: -12px;
  width: 42px;
  height: 1.5px;
  background: currentColor;
  transform: rotate(42deg);
}

.sketch-folder {
  width: 96px;
  height: 62px;
  border: 1.5px solid currentColor;
  border-radius: 5px;
}

.sketch-folder::before {
  content: "";
  position: absolute;
  left: 8px;
  top: -13px;
  width: 38px;
  height: 14px;
  border: 1.5px solid currentColor;
  border-bottom: 0;
  border-radius: 5px 5px 0 0;
}

.sketch-collar {
  width: 120px;
  height: 50px;
  border: 1.5px solid currentColor;
  border-radius: 50%;
}

.sketch-collar::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 20px;
  width: 22px;
  height: 22px;
  border: 1.5px solid currentColor;
  border-radius: 4px;
  transform: translateX(-50%) rotate(8deg);
}

.sketch-ai {
  width: 78px;
  height: 78px;
  border: 1.5px solid currentColor;
  border-radius: 8px;
}

.sketch-ai::before,
.sketch-ai::after {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1.5px solid currentColor;
  border-radius: 50%;
}

.sketch-ai::after {
  inset: auto;
  left: -12px;
  right: -12px;
  top: 50%;
  height: 1.5px;
  border: 0;
  background: currentColor;
}

.sketch-route {
  width: 150px;
  height: 70px;
  border-top: 1.5px dashed currentColor;
  border-radius: 50%;
  transform: rotate(-8deg);
}

.sketch-route::before,
.sketch-route::after {
  content: "";
  position: absolute;
  width: 12px;
  height: 12px;
  border: 1.5px solid currentColor;
  border-radius: 50%;
}

.sketch-route::before { left: 8px; top: -6px; }
.sketch-route::after { right: 5px; top: -2px; }

.sketch-check {
  width: 70px;
  height: 42px;
  border-left: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(-45deg);
}

.split-layout {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(320px, 1fr);
  gap: clamp(34px, 6vw, 84px);
  align-items: center;
}

.chapter-copy p,
.narrative-block p,
.section-heading p,
.investigation-board p,
.cta-block p,
.final-copy p {
  max-width: 720px;
}

.chapter-copy h3,
.narrative-block h3 {
  margin-top: 34px;
  color: var(--gold);
}

.hero-thoughts { display: none; }
.thought-chef-a {
  left: 3%;
  top: -11%;
  max-width: 360px;
  --note-rotate: -5deg;
}

.thought-chef-b {
  left: 3%;
  bottom: -23%;
  max-width: 350px;
  --note-rotate: 5deg;
}

.kitchen-board,
.scrapbook {
  position: relative;
  min-height: 640px;
}

.media-card,
.scrap-photo,
.final-photo {
  margin: 0;
  overflow: hidden;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 38px 120px rgba(0, 0, 0, 0.42);
}

.media-card {
  width: 86%;
  margin-left: auto;
  height: 620px;
  transform: rotate(2deg);
}

.process-cards {
  position: absolute;
  inset: -54px 0 -54px 0;
}

.glass-card {
  background:
    linear-gradient(140deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.035)),
    var(--glass);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  backdrop-filter: blur(20px);
}

.floating-card {
  transition: transform 460ms var(--ease), border-color 460ms var(--ease), background 460ms var(--ease);
  will-change: transform;
}

.floating-card:hover {
  transform: translateY(-8px) rotate(var(--hover-rotate, 0deg));
  border-color: rgba(232, 160, 32, 0.45);
}

.process-cards span {
  position: absolute;
  display: block;
  min-height: auto;
  padding: 4px 9px;
  color: rgba(255, 255, 255, 0.96);
  font-weight: 700;
  white-space: nowrap;
  background:
    repeating-linear-gradient(
      to bottom,
      rgba(255, 255, 255, 0.03) 0 1px,
      transparent 1px 12px
    );
  border-radius: 8px;
  box-shadow: none;
  z-index: 4;
}

.process-cards span:nth-child(1) { left: 2%; top: 4%; transform: rotate(-8deg); }
.process-cards span:nth-child(2) { right: 0; top: 13%; transform: rotate(8deg); }
.process-cards span:nth-child(3) { left: 1%; bottom: 16%; transform: rotate(5deg); }
.process-cards span:nth-child(4) { right: 0; bottom: 0; transform: rotate(-5deg); }

.kitchen-evidence {
  position: absolute;
  right: 0;
  bottom: 13%;
  width: min(320px, 52%);
  padding: 20px;
  background:
    radial-gradient(circle at 100% 0%, rgba(74, 125, 255, 0.22), transparent 58%),
    linear-gradient(135deg, rgba(232, 160, 32, 0.18), rgba(232, 160, 32, 0.04)),
    rgba(6, 13, 26, 0.76);
  border-color: rgba(232, 160, 32, 0.5);
  backdrop-filter: blur(24px) saturate(1.2);
  box-shadow: 0 0 0 1px rgba(232, 160, 32, 0.16), 0 28px 80px rgba(0, 0, 0, 0.34);
  animation: softPulse 3.8s ease-in-out infinite;
}

.kitchen-evidence p {
  margin: 8px 0 0;
  font-size: 17px;
  line-height: 1.42;
  color: var(--white);
}

.gorchitsa-section {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: clamp(34px, 7vw, 88px);
}

.scrap-photo {
  height: min(74vh, 760px);
  transform: rotate(-2deg);
}

.scrap-mini {
  position: absolute;
  right: -8%;
  bottom: -3%;
  width: 34%;
  aspect-ratio: 0.78;
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid var(--border);
  box-shadow: 0 26px 90px rgba(0, 0, 0, 0.35);
  transform: rotate(7deg);
}

.scrap-note {
  position: absolute;
  z-index: 4;
  padding: 5px 9px;
  background:
    repeating-linear-gradient(
      to bottom,
      rgba(255, 255, 255, 0.035) 0 1px,
      transparent 1px 12px
    );
  border-radius: 8px;
}

.note-a { left: -18%; top: 9%; transform: rotate(-8deg); }
.note-b { right: -20%; top: 26%; transform: rotate(6deg); max-width: 220px; }
.note-c { left: -18%; bottom: -10%; transform: rotate(3deg); max-width: 230px; }

.thought-gorchitsa-a { right: -20%; top: 3%; --note-rotate: 5deg; }
.thought-gorchitsa-b {
  left: -18%;
  top: 28%;
  bottom: auto;
  max-width: 270px;
  --note-rotate: -4deg;
}

.paw-one {
  left: -12%;
  bottom: 23%;
  width: 42px;
  height: 36px;
  border: 1.5px solid rgba(255,255,255,0.56);
  border-radius: 50%;
}

.paw-one::before {
  content: "";
  position: absolute;
  left: -14px;
  top: -18px;
  width: 70px;
  height: 18px;
  background:
    radial-gradient(circle at 9px 9px, rgba(255,255,255,0.56) 0 6px, transparent 7px),
    radial-gradient(circle at 29px 2px, rgba(255,255,255,0.56) 0 6px, transparent 7px),
    radial-gradient(circle at 51px 9px, rgba(255,255,255,0.56) 0 6px, transparent 7px);
}

.food-bowl {
  right: -13%;
  top: 13%;
  width: 82px;
  height: 46px;
  border: 1.5px solid rgba(255,255,255,0.56);
  border-top: 0;
  border-radius: 0 0 42px 42px;
}

.food-bowl::before {
  content: "";
  position: absolute;
  left: 8px;
  right: 8px;
  top: -10px;
  height: 16px;
  border: 1.5px solid rgba(255,255,255,0.56);
  border-radius: 50%;
}

.toy-ball {
  left: -3%;
  top: 3%;
  width: 48px;
  height: 48px;
  border: 1.5px solid rgba(255,255,255,0.56);
  border-radius: 50%;
}

.toy-ball::before {
  content: "";
  position: absolute;
  inset: 7px;
  border-left: 1.5px solid rgba(255,255,255,0.56);
  border-right: 1.5px solid rgba(255,255,255,0.56);
  border-radius: 50%;
  transform: rotate(28deg);
}

.bone-line {
  right: -8%;
  bottom: 4%;
  width: 102px;
  height: 28px;
  border-top: 2px solid rgba(255,255,255,0.56);
  transform: rotate(-14deg);
}

.bone-line::before,
.bone-line::after {
  content: "";
  position: absolute;
  top: -19px;
  width: 35px;
  height: 35px;
  border: 1.5px solid rgba(255,255,255,0.56);
  border-radius: 50%;
}

.bone-line::before { left: -14px; }
.bone-line::after { right: -14px; }

.section-heading {
  max-width: 900px;
  margin: 0 auto clamp(34px, 6vw, 70px);
  text-align: center;
}

.thought-evidence-a { left: 2%; top: 6%; --note-rotate: -5deg; }
.thought-evidence-b { right: 3%; bottom: -7%; --note-rotate: 4deg; max-width: 300px; }
.evidence-sketches .sketch-doc { left: 8%; bottom: 9%; transform: rotate(-9deg); }
.evidence-sketches .sketch-chat { right: 8%; top: 22%; transform: rotate(8deg); }

.stamp-chat {
  display: none;
}

.evidence-section {
  max-width: var(--max);
  margin: 0 auto;
}

.evidence-section .section-heading {
  max-width: min(920px, 82vw);
  overflow-wrap: anywhere;
}

.evidence-section .section-heading h2 {
  max-width: 900px;
  margin-inline: auto;
  font-size: clamp(40px, 5vw, 78px);
  line-height: 1.06;
}

.evidence-section .section-heading p {
  max-width: 900px;
  margin-inline: auto;
  text-align: center;
}

.evidence-cloud {
  position: relative;
  min-height: 560px;
}

.evidence-card {
  position: absolute;
  min-width: 220px;
  padding: 22px 24px;
  color: var(--white);
  font: 800 clamp(17px, 1.6vw, 24px)/1.18 var(--font-display);
  box-shadow: 0 26px 80px rgba(0, 0, 0, 0.22);
}

.evidence-card:nth-child(1) { left: 6%; top: 5%; transform: rotate(-5deg); }
.evidence-card:nth-child(2) { left: 38%; top: 0; transform: rotate(4deg); }
.evidence-card:nth-child(3) { right: 5%; top: 18%; transform: rotate(-3deg); }
.evidence-card:nth-child(4) { left: 16%; bottom: 16%; transform: rotate(2deg); }
.evidence-card:nth-child(5) { left: 46%; bottom: 3%; transform: rotate(-4deg); }
.evidence-card:nth-child(6) { right: 12%; bottom: 22%; transform: rotate(5deg); }

.phone-mock {
  position: absolute;
  left: 50%;
  top: 15%;
  width: 260px;
  min-height: 430px;
  padding: 22px 16px 18px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 22px;
  background:
    radial-gradient(circle at 50% 0%, rgba(74, 125, 255, 0.22), transparent 52%),
    rgba(4, 9, 18, 0.9);
  box-shadow: 0 36px 110px rgba(0, 0, 0, 0.48);
  transform: translateX(-50%) rotate(-1deg);
}

.phone-top {
  display: block;
  width: 70px;
  height: 7px;
  margin: 0 auto 22px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.28);
}

.message {
  width: 82%;
  margin: 10px 0;
  padding: 12px 14px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  font-size: 14px;
  line-height: 1.25;
}

.message.right {
  margin-left: auto;
  background: rgba(74, 125, 255, 0.2);
}

.message.accent {
  background: rgba(232, 160, 32, 0.2);
}

.document-stack {
  position: absolute;
  left: 4%;
  bottom: 0;
  width: 230px;
  height: 170px;
}

.document-stack span {
  position: absolute;
  inset: auto 0 0;
  display: grid;
  place-items: center;
  min-height: 92px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: linear-gradient(145deg, rgba(255,255,255,0.14), rgba(255,255,255,0.04));
  color: var(--white);
  font-weight: 900;
  box-shadow: 0 22px 70px rgba(0,0,0,0.28);
}

.document-stack span:nth-child(1) { transform: rotate(-8deg) translate(-8px, -44px); }
.document-stack span:nth-child(2) { transform: rotate(5deg) translate(18px, -18px); }
.document-stack span:nth-child(3) { transform: rotate(-1deg); }

.doctor-line {
  max-width: 880px;
  margin: 0 auto;
  padding: 28px;
  border-top: 1px solid rgba(232, 160, 32, 0.42);
  border-bottom: 1px solid rgba(232, 160, 32, 0.24);
  text-align: center;
}

.doctor-line p {
  margin: 0;
  color: var(--white);
  font-family: var(--font-display);
  font-size: clamp(24px, 3vw, 40px);
  line-height: 1.2;
}

.events-section {
  max-width: 1280px;
  margin: 0 auto;
}

.events-section .section-heading {
  max-width: min(980px, 84vw);
  overflow-wrap: anywhere;
}

.events-section .section-heading h2 {
  max-width: 960px;
  margin-inline: auto;
  font-size: clamp(38px, 4.7vw, 72px);
  line-height: 1.06;
}

.events-section .section-heading p {
  max-width: 820px;
  margin-inline: auto;
  text-align: center;
}

.event-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(220px, 1fr));
  gap: 18px;
  align-items: stretch;
}

.event-card {
  position: relative;
  min-height: 480px;
  padding: 26px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.event-visual {
  position: relative;
  min-height: 112px;
  margin: -6px -4px 22px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.1);
  overflow: hidden;
}

.vet-visual span {
  position: absolute;
  left: 16px;
  right: 16px;
  height: 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
}

.vet-visual span:nth-child(1) { top: 18px; width: 62%; }
.vet-visual span:nth-child(2) { top: 48px; width: 82%; }
.vet-visual span:nth-child(3) { top: 78px; width: 46%; background: rgba(232, 160, 32, 0.34); }

.clinic-visual {
  display: grid;
  align-content: center;
  gap: 8px;
  padding: 14px;
  background:
    radial-gradient(circle at 90% 20%, rgba(255, 93, 70, 0.24), transparent 42%),
    rgba(255, 255, 255, 0.055);
}

.clinic-visual span {
  display: inline-flex;
  width: max-content;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,0.1);
  color: var(--white);
  font-size: 12px;
  font-weight: 900;
}

.clinic-visual span:first-child {
  background: rgba(255, 93, 70, 0.24);
}

.radar-visual {
  background:
    linear-gradient(45deg, transparent 46%, rgba(255,255,255,0.08) 47% 48%, transparent 49%),
    linear-gradient(-45deg, transparent 46%, rgba(255,255,255,0.06) 47% 48%, transparent 49%),
    rgba(255,255,255,0.055);
}

.radar-visual span {
  position: absolute;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 12px rgba(232, 160, 32, 0.08);
}

.radar-visual span:nth-child(1) { left: 26%; top: 28%; }
.radar-visual span:nth-child(2) { left: 62%; top: 18%; background: var(--blue-glow); }
.radar-visual span:nth-child(3) { left: 72%; top: 62%; }
.radar-visual span:nth-child(4) { left: 36%; top: 68%; background: var(--blue-glow); }

.bit-visual::before {
  content: "";
  position: absolute;
  left: 18%;
  right: 18%;
  top: 38%;
  height: 34px;
  border-radius: 999px;
  border: 8px solid rgba(255,255,255,0.16);
  border-top-color: rgba(74, 125, 255, 0.72);
}

.bit-visual span {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 48px;
  height: 22px;
  border-radius: 999px;
  background: #0a0f16;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.2), 0 0 24px rgba(74,125,255,0.45);
  transform: translate(-50%, -50%);
}

.event-card::before {
  content: "";
  position: absolute;
  inset: -40% -20% auto;
  height: 60%;
  background: radial-gradient(circle, rgba(74, 125, 255, 0.2), transparent 68%);
  pointer-events: none;
}

.danger-card::before {
  background: radial-gradient(circle, rgba(255, 93, 70, 0.22), transparent 68%);
}

.map-card::before {
  background: radial-gradient(circle, rgba(232, 160, 32, 0.22), transparent 68%);
}

.bit-card::before {
  background: radial-gradient(circle, rgba(74, 125, 255, 0.26), transparent 68%);
}

.event-number {
  color: var(--gold);
  font-weight: 900;
  font-family: var(--font-display);
}

.event-card h3 {
  margin-top: 18px;
  font-size: clamp(22px, 2vw, 30px);
}

.event-card p {
  font-size: 16px;
  line-height: 1.58;
}

.event-arrow {
  margin-top: auto;
  color: var(--gold);
  font-size: 44px;
  line-height: 1;
}

.event-card strong {
  display: block;
  margin-top: 10px;
  color: var(--white);
  font: 800 22px/1.1 var(--font-display);
}

.product-copy {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.78);
}

.thought-events-a { left: 5%; top: 15%; --note-rotate: -4deg; }
.thought-events-b { right: 4%; bottom: -7%; --note-rotate: 5deg; max-width: 340px; }
.events-sketches .sketch-alert { right: 10%; top: 20%; }
.events-sketches .sketch-map-pin { left: 7%; bottom: 16%; }
.events-sketches .sketch-heartbeat { right: 17%; bottom: 5%; transform: rotate(-8deg); }

.investigation-section {
  display: grid;
  grid-template-columns: minmax(430px, 0.92fr) minmax(320px, 1fr);
  gap: clamp(44px, 6vw, 88px);
  align-items: center;
  max-width: var(--max);
  margin: 0 auto;
}

.investigation-board {
  position: relative;
  padding: clamp(26px, 4vw, 44px) clamp(46px, 5.4vw, 72px) clamp(26px, 4vw, 44px) clamp(26px, 4vw, 44px);
}

.investigation-board::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background:
    linear-gradient(120deg, rgba(15, 43, 91, 0.56), rgba(255, 255, 255, 0.04)),
    radial-gradient(circle at 18% 24%, rgba(232, 160, 32, 0.09), transparent 22rem);
}

.case-files {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.case-files span {
  padding: 10px 13px;
  border: 1px solid rgba(232, 160, 32, 0.24);
  border-radius: 999px;
  background: rgba(232, 160, 32, 0.08);
  color: var(--white);
  font-weight: 900;
  font-size: 13px;
}

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

.fact-card {
  min-height: 220px;
  padding: 24px;
  border-radius: 8px;
  border: 1px solid rgba(232, 160, 32, 0.2);
  background:
    radial-gradient(circle at 80% 10%, rgba(232, 160, 32, 0.18), transparent 55%),
    rgba(255, 255, 255, 0.055);
  transform: rotate(var(--r, 0deg));
}

.fact-card:nth-child(1) { --r: -2deg; }
.fact-card:nth-child(2) { --r: 2deg; }
.fact-card:nth-child(3) { --r: 1deg; }
.fact-card:nth-child(4) { --r: -1deg; }

.fact-card span {
  display: block;
  color: var(--gold);
  font: 900 clamp(36px, 4.4vw, 64px)/0.98 var(--font-display);
  letter-spacing: -0.04em;
  max-width: 100%;
  overflow-wrap: normal;
}

.fact-card:nth-child(4) span {
  font-size: clamp(34px, 4vw, 56px);
  letter-spacing: -0.055em;
}

.fact-card p {
  margin-bottom: 0;
  font-size: 16px;
  line-height: 1.5;
}

.stamp-market {
  left: 50%;
  bottom: 7%;
  width: min(700px, 40vw);
  aspect-ratio: 2.65;
  transform: rotate(-4deg);
}

.thought-market-a {
  left: 4%;
  bottom: 4%;
  max-width: 310px;
  --note-rotate: -5deg;
}
.thought-market-b { right: 5%; top: 8%; --note-rotate: 4deg; }
.market-sketches .sketch-magnifier { right: 18%; bottom: 12%; }
.market-sketches .sketch-folder { left: 10%; top: 16%; transform: rotate(-7deg); }

.birth-section {
  display: grid;
  place-items: center;
  text-align: center;
  min-height: 125vh;
  padding-bottom: clamp(210px, 18vw, 290px);
}

.birth-core {
  position: relative;
  z-index: 4;
  max-width: 900px;
  transform: translateY(36px);
}

.birth-photo {
  display: none;
}

.birth-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(6, 13, 26, 0), rgba(6, 13, 26, 0.38));
}

.birth-photo-dog {
  right: -3%;
  top: 14%;
  width: min(250px, 22vw);
  height: min(340px, 35vh);
  transform: rotate(6deg);
}

.birth-photo-founder {
  left: -2%;
  bottom: 11%;
  width: min(230px, 20vw);
  height: min(330px, 34vh);
  transform: rotate(-5deg);
}

.birth-core p {
  margin-inline: auto;
}

.zootek-core {
  position: relative;
  display: inline-flex;
  margin: 44px auto 78px;
  width: clamp(260px, 34vw, 450px);
  aspect-ratio: 1;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid rgba(232, 160, 32, 0.45);
  background:
    radial-gradient(circle, rgba(232, 160, 32, 0.22), transparent 58%),
    radial-gradient(circle, rgba(74, 125, 255, 0.18), transparent 72%);
  color: var(--white);
  font: 900 clamp(34px, 4.9vw, 70px)/1 var(--font-display);
  letter-spacing: 0.02em;
  box-shadow: inset 0 0 70px rgba(74, 125, 255, 0.16), 0 0 90px rgba(232, 160, 32, 0.16);
}

.birth-core h3 {
  position: relative;
  z-index: 6;
  max-width: 780px;
  margin: 0 auto;
  padding-top: 16px;
  font-size: clamp(24px, 2.6vw, 38px);
}

.zootek-core::before,
.zootek-core::after {
  content: "";
  position: absolute;
  inset: 12%;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
  transform: rotate(28deg) scaleX(1.18);
}

.zootek-core::after {
  inset: 24%;
  transform: rotate(-28deg) scaleX(1.32);
}

.light-trails span {
  position: absolute;
  left: 50%;
  top: 50%;
  transform-origin: 0 0;
}

.light-trails span {
  width: min(38vw, 480px);
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(74, 125, 255, 0.7), rgba(232, 160, 32, 0.75), transparent);
  opacity: 0.45;
}

.light-trails span:nth-child(1) { transform: rotate(12deg) translateX(-50%); }
.light-trails span:nth-child(2) { transform: rotate(68deg) translateX(-50%); }
.light-trails span:nth-child(3) { transform: rotate(142deg) translateX(-50%); }
.light-trails span:nth-child(4) { transform: rotate(206deg) translateX(-50%); }
.light-trails span:nth-child(5) { transform: rotate(298deg) translateX(-50%); }

.birth-nodes {
  position: absolute;
  inset: -34%;
  z-index: 12;
  pointer-events: none;
}

.birth-nodes span {
  position: absolute;
  left: 50%;
  top: 50%;
  padding: 10px 14px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(255,255,255,0.07);
  color: var(--white);
  font-family: var(--font-body);
  font-size: clamp(13px, 1.05vw, 16px);
  letter-spacing: 0;
  font-weight: 800;
  line-height: 1;
  backdrop-filter: blur(14px);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.2);
  white-space: nowrap;
}

.birth-nodes span:nth-child(1) {
  left: 92%;
  top: 86%;
  transform: translate(-50%, -50%);
}

.birth-nodes span:nth-child(2) {
  left: 8%;
  top: 18%;
  transform: translate(-50%, -50%);
}

.birth-nodes span:nth-child(3) {
  left: 8%;
  top: 86%;
  transform: translate(-50%, -50%);
}

.birth-nodes span:nth-child(4) {
  left: -7%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.birth-nodes span:nth-child(5) {
  left: 82%;
  top: 12%;
  transform: translate(-50%, -50%);
}

.birth-nodes span:nth-child(6) {
  left: 107%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.thought-birth-a { left: 6%; bottom: 5%; top: auto; --note-rotate: -5deg; }
.thought-birth-b { right: 7%; bottom: 6%; --note-rotate: 4deg; max-width: 300px; }

.ecosystem-section {
  max-width: 1260px;
  margin: 0 auto;
}

.ecosystem-section .section-heading {
  max-width: min(1120px, 88vw);
  text-align: center;
}

.ecosystem-section .section-heading h2 {
  max-width: 1120px;
  margin-inline: auto;
  font-size: clamp(46px, 5.5vw, 92px);
  line-height: 1.04;
}

.ecosystem-section .section-heading p {
  max-width: 900px;
  margin-inline: auto;
  text-align: center;
}

.product-orbit {
  position: relative;
  min-height: 760px;
  border-radius: 8px;
  background:
    radial-gradient(circle at center, rgba(74, 125, 255, 0.17), transparent 38%),
    radial-gradient(circle at center, rgba(232, 160, 32, 0.08), transparent 58%);
}

.product-orbit::before,
.product-orbit::after {
  content: "";
  position: absolute;
  inset: 10%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
}

.product-orbit::after {
  inset: 22%;
}

.orbit-center,
.orbit-item {
  position: absolute;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.075);
  backdrop-filter: blur(18px);
  box-shadow: 0 30px 100px rgba(0, 0, 0, 0.22);
}

.orbit-center {
  left: 50%;
  top: 50%;
  width: 260px;
  min-height: 260px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 30px;
}

.orbit-center span {
  color: var(--gold);
  font: 900 40px/1 var(--font-display);
}

.orbit-center small {
  color: var(--muted);
  font-weight: 700;
}

.orbit-item {
  width: min(280px, 32vw);
  min-height: 158px;
  padding: 22px;
  border-radius: 8px;
}

.orbit-item h3 {
  font-size: 24px;
  color: var(--gold);
}

.orbit-item p {
  margin-bottom: 0;
  font-size: 15px;
  line-height: 1.5;
}

.vetid { left: 8%; top: 12%; }
.bit { right: 9%; top: 10%; }
.zoya { left: 4%; bottom: 16%; }
.radar { right: 6%; bottom: 14%; }
.desk { left: 50%; bottom: 0; transform: translateX(-50%); }

.disclaimer {
  max-width: 860px;
  margin: 40px auto 0;
  padding: 18px 22px;
  border-radius: 8px;
  border: 1px solid rgba(232, 160, 32, 0.2);
  background: rgba(232, 160, 32, 0.06);
  color: rgba(255,255,255,0.78);
  font-size: 15px;
}

.thought-ecosystem-a { left: 2%; top: 31%; --note-rotate: -5deg; max-width: 360px; }
.thought-ecosystem-b { right: 3%; bottom: 15%; --note-rotate: 5deg; max-width: 280px; }
.ecosystem-sketches .sketch-collar { left: 9%; bottom: 20%; transform: rotate(10deg); }
.ecosystem-sketches .sketch-ai { right: 11%; top: 25%; transform: rotate(-7deg); }

.done-section,
.support-section {
  max-width: var(--max);
  margin: 0 auto;
}

.done-section .section-heading {
  max-width: min(1080px, 88vw);
  text-align: center;
}

.done-section .section-heading h2 {
  max-width: 1060px;
  margin-inline: auto;
  font-size: clamp(44px, 5.3vw, 86px);
  line-height: 1.05;
}

.done-section .section-heading p {
  max-width: 860px;
  margin-inline: auto;
  text-align: center;
}

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

.timeline-card {
  padding: 26px;
  min-height: 260px;
}

.timeline-card span {
  color: var(--gold);
  font: 900 18px/1 var(--font-display);
}

.timeline-card h3 {
  margin-top: 22px;
  font-size: 26px;
}

.timeline-card p {
  font-size: 16px;
}

.prototype-wall {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr 1fr;
  gap: 16px;
  margin-top: 34px;
  align-items: stretch;
}

.prototype-phone,
.prototype-panel,
.prototype-map {
  min-height: 230px;
  padding: 24px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background:
    radial-gradient(circle at 80% 8%, rgba(74, 125, 255, 0.18), transparent 48%),
    rgba(255,255,255,0.055);
  box-shadow: 0 28px 90px rgba(0,0,0,0.22);
}

.prototype-phone {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  border-radius: 22px;
}

.prototype-wall strong {
  display: block;
  color: var(--gold);
  font: 900 24px/1.08 var(--font-display);
}

.prototype-wall p {
  margin-bottom: 0;
  font-size: 16px;
  line-height: 1.48;
}

.prototype-panel {
  background:
    linear-gradient(90deg, rgba(255,255,255,0.08) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255,255,255,0.055) 1px, transparent 1px),
    rgba(255,255,255,0.055);
  background-size: 42px 42px;
}

.prototype-map {
  position: relative;
  overflow: hidden;
}

.prototype-map::before,
.prototype-map::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(232, 160, 32, 0.26);
}

.prototype-map::before {
  right: -20px;
  bottom: -30px;
  width: 190px;
  height: 190px;
}

.prototype-map::after {
  right: 38px;
  bottom: 28px;
  width: 72px;
  height: 72px;
  background: rgba(232, 160, 32, 0.12);
}

.stamp-done {
  display: none;
}

.done-thoughts {
  display: none;
}

.support-section {
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  gap: clamp(32px, 6vw, 74px);
  align-items: center;
}

.cta-block {
  padding: clamp(28px, 5vw, 56px);
  border-radius: 8px;
  background:
    radial-gradient(circle at 80% 20%, rgba(232, 160, 32, 0.14), transparent 42%),
    rgba(255, 255, 255, 0.055);
  border: 1px solid var(--border);
}

.next-steps {
  display: grid;
  gap: 12px;
  margin-top: 32px;
}

.next-steps span {
  padding: 18px 20px;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  color: var(--white);
  font-weight: 800;
}

.before-after {
  display: grid;
  gap: 18px;
}

.before-after div {
  padding: 26px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: rgba(255,255,255,0.06);
}

.before-after h3 {
  color: var(--gold);
}

.before-after p {
  margin-bottom: 0;
  font-size: 17px;
}

.thought-support-a { left: 5%; bottom: 12%; --note-rotate: -5deg; }
.thought-support-b { right: 4%; top: 16%; --note-rotate: 4deg; max-width: 280px; }
.support-sketches .sketch-route { right: 11%; bottom: 11%; }
.support-sketches .sketch-check { left: 8%; top: 20%; }

.final-section {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.82fr 1fr;
  gap: clamp(32px, 6vw, 84px);
  align-items: center;
  min-height: 100dvh;
}

.final-photo {
  width: min(100%, 470px);
  justify-self: center;
  aspect-ratio: 0.72;
  height: auto;
  max-height: min(74vh, 760px);
  transform: rotate(-2deg);
}

.final-photo img {
  object-position: 50% 48%;
}

.final-copy h3 {
  margin-top: 30px;
  color: var(--gold);
}

.contact-line {
  margin-top: 18px;
  font-size: 15px;
}

.final-note {
  position: absolute;
  left: 16%;
  bottom: 14%;
  transform: rotate(-7deg);
}

.thought-final-a { left: 5%; top: 13%; --note-rotate: -4deg; }
.thought-final-b { right: 2%; bottom: 10%; --note-rotate: 5deg; max-width: 290px; }

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

.js .reveal {
  opacity: 0;
  transform: translateY(34px);
  filter: blur(12px);
  transition: opacity 900ms var(--ease), transform 900ms var(--ease), filter 900ms var(--ease);
}

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

@keyframes floaty {
  0%, 100% { translate: 0 0; }
  50% { translate: 0 -12px; }
}

@keyframes doodleFloat {
  0%, 100% { translate: 0 0; rotate: 0deg; }
  50% { translate: 0 -10px; rotate: 2deg; }
}

@keyframes thoughtDrift {
  0%, 100% { translate: 0 0; }
  50% { translate: 0 -8px; }
}

@keyframes softPulse {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 0 0 1px rgba(232, 160, 32, 0.16), 0 28px 80px rgba(232, 160, 32, 0.18);
  }
  50% {
    transform: scale(1.025);
    box-shadow: 0 0 0 1px rgba(232, 160, 32, 0.38), 0 34px 100px rgba(232, 160, 32, 0.26);
  }
}

.hero-note,
.scrap-note,
.birth-nodes span {
  animation: floaty 5.5s ease-in-out infinite;
}

.hero-note:nth-of-type(odd),
.scrap-note:nth-of-type(odd),
.birth-nodes span:nth-child(odd) {
  animation-delay: -2s;
}

@media (max-width: 1100px) {
  .hero-note,
  .scrap-note,
  .process-cards,
  .margin-thoughts,
  .desktop-sketches,
  .vet-doodles,
  .animal-doodles,
  .photo-stamp,
  .final-note {
    display: none !important;
  }
}

@media (max-width: 920px) {
  .hero,
  .split-layout,
  .gorchitsa-section,
  .investigation-section,
  .support-section,
  .final-section {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    padding-left: 0;
    padding-top: 60px;
  }

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

  .hero-stage {
    min-height: 760px;
    margin-top: 12px;
    padding: 98px 20px 110px;
  }

  .portrait-stack {
    height: 590px;
  }

  .hero-photo-chef {
    left: 3%;
    top: 23%;
    width: 39%;
    height: 55%;
  }

  .hero-photo-dog {
    right: 3%;
    top: 13%;
    width: 54%;
    height: 63%;
  }

  .hero-note {
    font-size: clamp(22px, 3.2vw, 30px);
    max-width: 210px;
  }

  .note-one {
    left: 7%;
    top: 2%;
    transform: rotate(-7deg);
  }

  .note-one::before {
    right: -54px;
    top: 22px;
    transform: rotate(14deg);
  }

  .note-two {
    right: 4%;
    top: 1%;
    transform: rotate(5deg);
  }

  .note-two::before {
    left: -54px;
    top: 34px;
    transform: rotate(-12deg);
  }

  .note-three {
    display: none;
  }

  .note-four {
    display: none;
  }

  .dog-line {
    left: 67%;
    top: 4%;
  }

  .pill-line {
    left: 42%;
    top: 82%;
  }

  .syringe-line {
    right: 0;
    top: 80%;
  }

  .paw-line {
    left: 84%;
    bottom: 12%;
  }

  .hero-proof {
    bottom: -5%;
  }

  .final-photo {
    width: min(100%, 560px);
    aspect-ratio: 0.74;
    max-height: none;
    transform: rotate(-1deg);
  }

  .final-photo img {
    object-position: 50% 44%;
  }

  .event-grid,
  .timeline,
  .prototype-wall {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .prototype-wall {
    grid-template-columns: 1fr;
  }

  .product-orbit {
    min-height: auto;
    display: grid;
    gap: 16px;
    padding: 18px;
  }

  .product-orbit::before,
  .product-orbit::after {
    display: none;
  }

  .orbit-center,
  .orbit-item {
    position: relative;
    inset: auto;
    left: auto;
    top: auto;
    right: auto;
    bottom: auto;
    width: 100%;
    min-height: auto;
    transform: none;
    border-radius: 8px;
  }
}

@media (max-width: 760px) {
  .site-header {
    padding: 14px 18px;
  }

  .brand-mark {
    gap: 8px;
    font-size: 15px;
  }

  .brand-mark img {
    width: 42px;
    height: 42px;
    border-radius: 8px;
  }

  .site-header .ghost-button {
    display: none;
  }

  .story-rail {
    display: none;
  }

  .margin-thoughts,
  .desktop-sketches,
  .photo-stamp {
    display: none;
  }

  .rail-dot span {
    display: none;
  }

  .section {
    min-height: auto;
    padding: 82px 20px;
    overflow-x: clip;
  }

  .section:not(.hero) .chapter-label {
    font-size: clamp(20px, 8vw, 30px);
    line-height: 1;
  }

  h1,
  h2 {
    max-width: 100%;
    overflow-wrap: anywhere;
    text-wrap: balance;
  }

  h1 {
    font-size: clamp(39px, 12vw, 54px);
    line-height: 1.02;
  }

  h2,
  .events-section .section-heading h2,
  .evidence-section .section-heading h2,
  .ecosystem-section .section-heading h2,
  .done-section .section-heading h2 {
    font-size: clamp(34px, 11vw, 52px);
    line-height: 1.08;
    letter-spacing: -0.045em;
  }

  .section-heading,
  .events-section .section-heading,
  .evidence-section .section-heading,
  .ecosystem-section .section-heading,
  .done-section .section-heading {
    max-width: 100%;
    margin-bottom: 34px;
  }

  .section-heading p,
  .events-section .section-heading p,
  .evidence-section .section-heading p,
  .ecosystem-section .section-heading p,
  .done-section .section-heading p,
  .chapter-copy p,
  .narrative-block p,
  .investigation-board p,
  .cta-block p,
  .final-copy p {
    max-width: 100%;
    font-size: 18px;
    line-height: 1.58;
  }

  h1 span {
    font-size: 1em;
    white-space: normal;
  }

  .hero-stage {
    min-height: 560px;
    padding: 44px 0 90px;
  }

  .portrait-stack {
    height: 450px;
  }

  .hero-photo-chef {
    width: 52%;
    height: 46%;
    top: 10%;
    left: 0;
  }

  .hero-photo-dog {
    width: 70%;
    height: 60%;
    top: 28%;
    right: 0;
  }

  .hero-note {
    font-size: 24px;
  }

  .hero-note::before {
    width: 42px;
  }

  .note-one { top: 2%; left: 2%; max-width: 150px; }
  .note-two { right: 0; top: 2%; max-width: 158px; }
  .note-three { right: 0; bottom: 5%; max-width: 180px; }
  .note-four { left: 2%; bottom: 2%; max-width: 165px; }

  .hero-proof {
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    min-width: 0;
    width: 100%;
    margin-top: 10px;
    transform: none;
  }

  .proof-one,
  .proof-two {
    transform: none;
  }

  .kitchen-board,
  .scrapbook,
  .media-card,
  .scrap-photo {
    min-height: auto;
    height: auto;
  }

  .media-card,
  .scrap-photo,
  .final-photo {
    height: auto;
  }

  .media-card,
  .scrap-photo {
    width: 100%;
    margin-left: 0;
    height: min(520px, 118vw);
    transform: none;
  }

  .final-photo {
    width: 100%;
    aspect-ratio: 0.68;
    transform: none;
  }

  .final-photo img {
    object-position: 50% 42%;
  }

  .process-cards,
  .evidence-cloud {
    position: static;
    min-height: auto;
    display: grid;
    gap: 12px;
    margin-top: 16px;
  }

  .process-cards span,
  .evidence-card,
  .phone-mock,
  .document-stack,
  .kitchen-evidence,
  .scrap-mini {
    position: static;
    min-width: 0;
    width: auto;
    height: auto;
    transform: none;
  }

  .scrapbook {
    display: grid;
    gap: 12px;
  }

  .scrap-note {
    position: static;
    width: max-content;
    max-width: 82%;
  }

  .note-a,
  .note-b,
  .note-c {
    transform: none;
  }

  .note-b {
    justify-self: end;
  }

  .vet-doodles,
  .animal-doodles {
    opacity: 0.65;
  }

  .dog-line,
  .syringe-line,
  .paw-line,
  .food-bowl {
    display: none;
  }

  .pill-line {
    left: auto;
    right: 4%;
    top: 20%;
    transform: scale(0.74) rotate(-18deg);
  }

  .toy-ball {
    left: auto;
    right: 2%;
    top: 2%;
    transform: scale(0.72);
  }

  .bone-line {
    right: 0;
    bottom: 0;
    transform: scale(0.72) rotate(-14deg);
  }

  .phone-mock {
    min-height: 360px;
  }

  .scrap-mini {
    margin-top: 14px;
    aspect-ratio: 1;
  }

  .event-grid,
  .fact-grid,
  .timeline {
    grid-template-columns: 1fr;
  }

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

  .fact-card,
  .timeline-card,
  .event-card,
  .before-after > div,
  .glass-card {
    max-width: 100%;
  }

  .birth-nodes,
  .light-trails,
  .birth-photo {
    display: none;
  }

  .zootek-core {
    width: min(80vw, 330px);
    margin-bottom: 36px;
  }

  .birth-core h3 {
    font-size: clamp(24px, 7.5vw, 32px);
    line-height: 1.15;
  }

  .next-steps,
  .before-after {
    grid-template-columns: 1fr;
  }

  .final-note {
    display: none;
  }

  .primary-button,
  .ghost-button {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 1ms !important;
    scroll-behavior: auto !important;
  }

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