:root {
  color-scheme: light;
  --paper: #fff8ef;
  --paper-deep: #f7eadb;
  --cream: #fff1dd;
  --custard: #e39a47;
  --custard-soft: #f6c983;
  --rose: #c96f72;
  --rose-soft: #f4d9d4;
  --plum: #593b5f;
  --plum-deep: #34263a;
  --sage: #72836b;
  --sage-soft: #dce6d6;
  --ink: #2d2421;
  --ink-soft: #675952;
  --line: rgba(69, 48, 42, 0.15);
  --glass: rgba(255, 248, 239, 0.82);
  --white: #fffdfa;
  --shadow-sm: 0 12px 32px rgba(67, 44, 35, 0.1);
  --shadow-md: 0 24px 60px rgba(67, 44, 35, 0.14);
  --shadow-lg: 0 36px 90px rgba(45, 30, 26, 0.2);
  --radius-sm: 1rem;
  --radius-md: 1.75rem;
  --radius-lg: 2.75rem;
  --max: 78rem;
  --font-display: ui-rounded, "SF Pro Rounded", "Avenir Next Rounded", "Nunito Sans", system-ui, sans-serif;
  --font-body: "Avenir Next", Avenir, Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  overflow-x: clip;
  scroll-behavior: smooth;
  scroll-padding-top: 6.5rem;
}

body {
  margin: 0;
  overflow-x: clip;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

img {
  height: auto;
}

a {
  color: inherit;
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.18em;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

button {
  color: inherit;
}

:focus-visible {
  outline: 3px solid var(--custard);
  outline-offset: 4px;
}

::selection {
  background: var(--custard-soft);
  color: var(--plum-deep);
}

.skip-link {
  position: fixed;
  z-index: 999;
  top: 0.75rem;
  left: 0.75rem;
  transform: translateY(-180%);
  border-radius: 999px;
  background: var(--plum-deep);
  color: var(--white);
  padding: 0.75rem 1rem;
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.shell {
  width: min(calc(100% - 2rem), var(--max));
  margin-inline: auto;
}

.narrow {
  width: min(calc(100% - 2rem), 52rem);
  margin-inline: auto;
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  right: 0;
  pointer-events: none;
}

.site-nav {
  pointer-events: auto;
  width: min(calc(100% - 1.25rem), 82rem);
  min-height: 4.5rem;
  margin: 0.65rem auto 0;
  padding: 0.55rem 0.65rem 0.55rem 0.85rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: 1.6rem;
  background: rgba(255, 248, 239, 0.94);
  box-shadow: 0 16px 44px rgba(42, 29, 25, 0.14);
}

@supports (backdrop-filter: blur(20px)) {
  .site-nav {
    background: var(--glass);
    backdrop-filter: blur(24px) saturate(1.35);
    -webkit-backdrop-filter: blur(24px) saturate(1.35);
  }
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  min-width: max-content;
  text-decoration: none;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 760;
  letter-spacing: -0.025em;
}

.brand img {
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 0.8rem;
  box-shadow: 0 5px 14px rgba(89, 59, 95, 0.18);
}

.nav-links {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 0.1rem;
}

.nav-link,
.nav-dropdown-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.75rem;
  padding: 0.55rem 0.78rem;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--ink-soft);
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: color 160ms ease, background 160ms ease, transform 160ms ease;
}

.nav-link:hover,
.nav-link[aria-current="page"],
.nav-dropdown-button:hover,
.nav-dropdown-button[aria-expanded="true"] {
  background: rgba(227, 154, 71, 0.13);
  color: var(--plum-deep);
}

.nav-link:active,
.nav-dropdown-button:active {
  transform: scale(0.98);
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown-button::after {
  content: "";
  width: 0.48rem;
  height: 0.48rem;
  margin-left: 0.48rem;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-0.12rem);
  transition: transform 160ms ease;
}

.nav-dropdown-button[aria-expanded="true"]::after {
  transform: rotate(225deg) translate(-0.05rem, -0.05rem);
}

.guide-menu {
  position: absolute;
  top: calc(100% + 0.7rem);
  right: 0;
  width: min(22rem, calc(100vw - 2rem));
  padding: 0.55rem;
  border: 1px solid rgba(255, 255, 255, 0.75);
  border-radius: 1.35rem;
  background: rgba(255, 252, 247, 0.97);
  box-shadow: var(--shadow-md);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-0.5rem) scale(0.98);
  transform-origin: top right;
  transition: opacity 160ms ease, transform 160ms ease, visibility 160ms ease;
}

@supports (backdrop-filter: blur(20px)) {
  .guide-menu {
    background: rgba(255, 248, 239, 0.9);
    backdrop-filter: blur(28px) saturate(1.3);
    -webkit-backdrop-filter: blur(28px) saturate(1.3);
  }
}

.guide-menu[data-open="true"] {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.guide-menu a {
  display: grid;
  grid-template-columns: 2.4rem 1fr;
  gap: 0.7rem;
  align-items: center;
  padding: 0.72rem;
  border-radius: 1rem;
  text-decoration: none;
}

.guide-menu a:hover {
  background: rgba(227, 154, 71, 0.12);
}

.guide-glyph {
  position: relative;
  width: 2.35rem;
  height: 2.35rem;
  display: grid;
  place-items: center;
  border-radius: 0.85rem;
  background: var(--cream);
  color: var(--plum);
  font-size: 0;
  font-weight: 800;
}

.guide-glyph::before,
.guide-glyph::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  background: currentColor;
}

.guide-glyph::before {
  width: 0.72rem;
  height: 0.62rem;
  left: 0.82rem;
  top: 1rem;
  transform: rotate(-8deg);
}

.guide-glyph::after {
  width: 0.25rem;
  height: 0.25rem;
  left: 0.56rem;
  top: 0.7rem;
  box-shadow: 0.42rem -0.18rem 0 currentColor, 0.82rem 0 0 currentColor;
}

.guide-menu strong,
.guide-menu small {
  display: block;
}

.guide-menu strong {
  font-family: var(--font-display);
  font-size: 0.93rem;
}

.guide-menu small {
  color: var(--ink-soft);
  font-size: 0.78rem;
  line-height: 1.35;
}

.nav-cta,
.button {
  min-height: 2.95rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 0.68rem 1.05rem;
  background: var(--plum-deep);
  color: var(--white);
  font-weight: 760;
  text-decoration: none;
  box-shadow: 0 8px 22px rgba(52, 38, 58, 0.19);
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.nav-cta:hover,
.button:hover {
  background: var(--plum);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(52, 38, 58, 0.24);
}

.button.secondary {
  border-color: var(--line);
  background: rgba(255, 253, 250, 0.78);
  color: var(--plum-deep);
  box-shadow: none;
}

.button.secondary:hover {
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.button.light {
  background: var(--white);
  color: var(--plum-deep);
}

.menu-toggle {
  display: none;
  width: 2.9rem;
  height: 2.9rem;
  margin-left: auto;
  border: 0;
  border-radius: 1rem;
  background: var(--cream);
  cursor: pointer;
}

.menu-toggle span,
.menu-toggle::before,
.menu-toggle::after {
  content: "";
  width: 1.25rem;
  height: 2px;
  display: block;
  margin: 0.27rem auto;
  border-radius: 99px;
  background: var(--plum-deep);
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-toggle[aria-expanded="true"] span {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"]::before {
  transform: translateY(0.29rem) rotate(45deg);
}

.menu-toggle[aria-expanded="true"]::after {
  transform: translateY(-0.29rem) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: center;
  overflow: hidden;
  background: var(--plum-deep);
  color: var(--white);
}

.hero-video,
.hero-poster {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-poster {
  background-position: center;
  background-size: cover;
}

.hero-poster img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero::before {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(30, 20, 31, 0.84) 0%, rgba(30, 20, 31, 0.54) 48%, rgba(30, 20, 31, 0.24) 100%),
    linear-gradient(0deg, rgba(30, 20, 31, 0.72) 0%, transparent 42%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(58rem, 100%);
  padding-top: 7rem;
  padding-bottom: 8rem;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0 0 1rem;
  color: var(--custard);
  font-size: 0.78rem;
  font-weight: 820;
  letter-spacing: 0.075em;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #ffdca9;
}

.eyebrow::before {
  content: "";
  width: 1.5rem;
  height: 2px;
  border-radius: 99px;
  background: currentColor;
}

h1,
h2,
h3,
h4,
p {
  margin-top: 0;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  font-weight: 790;
  letter-spacing: -0.045em;
  line-height: 1.03;
}

h1 {
  max-width: 14ch;
  margin-bottom: 1.35rem;
  font-size: clamp(3.25rem, 8vw, 7.7rem);
  text-wrap: balance;
}

h2 {
  margin-bottom: 1.1rem;
  font-size: clamp(2.35rem, 5vw, 4.9rem);
  text-wrap: balance;
}

h3 {
  margin-bottom: 0.65rem;
  font-size: clamp(1.35rem, 2.2vw, 2rem);
}

.rotating-word {
  display: inline-block;
  min-width: 6.65em;
  color: var(--custard-soft);
  transform-origin: 50% 80%;
  transition: opacity 300ms ease, transform 420ms cubic-bezier(0.2, 0.8, 0.2, 1), filter 300ms ease;
}

.rotating-word.is-changing {
  opacity: 0;
  filter: blur(5px);
  transform: translateY(0.26em) rotate(1.2deg);
}

.hero-lede {
  max-width: 41rem;
  margin-bottom: 1.6rem;
  color: rgba(255, 253, 250, 0.87);
  font-size: clamp(1.08rem, 2vw, 1.35rem);
  line-height: 1.55;
}

.hero-actions,
.button-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
}

.app-store-badge-link {
  display: inline-flex;
  min-height: 3.75rem;
  align-items: center;
  border-radius: 0.65rem;
  outline-offset: 0.3rem;
}

.app-store-badge-link img {
  display: block;
  width: 11.25rem;
  height: 3.75rem;
}

.app-store-badge-link:focus-visible {
  outline: 3px solid var(--custard-soft);
}

.hero-get-padr {
  border-color: rgba(255, 255, 255, 0.42);
  background: #cbb8ff;
  color: var(--plum-deep);
}

.hero-get-padr:hover {
  background: #ddcfff;
  color: var(--plum-deep);
}

.hero-proof {
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.proof-pill {
  display: inline-flex;
  align-items: center;
  min-height: 2.35rem;
  padding: 0.43rem 0.74rem;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 253, 250, 0.92);
  font-size: 0.82rem;
  font-weight: 720;
  backdrop-filter: blur(10px);
}

.motion-control {
  position: absolute;
  z-index: 3;
  right: 1rem;
  bottom: 1rem;
  min-height: 2.65rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  padding: 0.48rem 0.75rem;
  background: rgba(38, 26, 41, 0.56);
  color: var(--white);
  font-size: 0.79rem;
  font-weight: 720;
  cursor: pointer;
  backdrop-filter: blur(12px);
}

.motion-control::before {
  content: "Ⅱ";
  display: grid;
  place-items: center;
  width: 1.25rem;
  height: 1.25rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.16);
  font-size: 0.65rem;
}

.motion-control[aria-pressed="true"]::before {
  content: "▶";
  padding-left: 0.08rem;
}

.custard-peek {
  position: absolute;
  z-index: 2;
  right: max(2vw, calc((100vw - var(--max)) / 2));
  bottom: -5.5rem;
  width: clamp(14rem, 23vw, 24rem);
  pointer-events: none;
  filter: drop-shadow(0 28px 30px rgba(20, 12, 21, 0.3));
  animation: custard-wave 7s ease-in-out infinite;
}

@keyframes custard-wave {
  0%, 62%, 100% { transform: translateY(0) rotate(0deg); }
  68% { transform: translateY(-0.75rem) rotate(-1.4deg); }
  74% { transform: translateY(-0.2rem) rotate(1deg); }
  80% { transform: translateY(-0.55rem) rotate(-0.6deg); }
}

.cat-shelf {
  position: relative;
  z-index: 4;
  margin-top: -1px;
  padding: 3.3rem 0 2rem;
  overflow: hidden;
  background: var(--paper);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.cat-shelf::before {
  content: "";
  position: absolute;
  inset: 2.2rem 0 auto;
  height: 0.7rem;
  background: var(--custard-soft);
  box-shadow: 0 7px 0 rgba(89, 59, 95, 0.08);
}

.cat-parade {
  width: max-content;
  display: flex;
  align-items: end;
  gap: 1.25rem;
  padding-inline: 1.25rem;
  animation: cat-parade 32s linear infinite;
}

.cat-card {
  position: relative;
  width: clamp(14rem, 22vw, 19rem);
  height: clamp(13rem, 20vw, 18rem);
  flex: 0 0 auto;
  display: grid;
  place-items: end center;
  overflow: hidden;
  border: 1px solid rgba(69, 48, 42, 0.08);
  border-radius: 44% 44% 1.4rem 1.4rem;
  background: #fff5e8;
  box-shadow: var(--shadow-sm);
}

.cat-card img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  mix-blend-mode: multiply;
}

.cat-card span {
  position: absolute;
  right: 0.7rem;
  bottom: 0.7rem;
  padding: 0.34rem 0.6rem;
  border-radius: 999px;
  background: rgba(255, 253, 250, 0.9);
  color: var(--plum-deep);
  font-size: 0.75rem;
  font-weight: 780;
  box-shadow: 0 4px 16px rgba(45, 36, 33, 0.1);
}

@keyframes cat-parade {
  to { transform: translateX(calc(-50% - 0.625rem)); }
}

.cat-parade:hover,
.cat-parade:focus-within,
.motion-paused .cat-parade,
.motion-paused .custard-peek,
.motion-paused .hardware-track {
  animation-play-state: paused;
}

.section {
  position: relative;
  padding-block: clamp(5rem, 10vw, 9rem);
  overflow: clip;
}

.section.compact {
  padding-block: clamp(3.75rem, 7vw, 6rem);
}

.section.cream {
  background: var(--cream);
}

.section.rose {
  background: var(--rose-soft);
}

.section.sage {
  background: var(--sage-soft);
}

.section.plum {
  background: var(--plum-deep);
  color: var(--white);
}

.section.plum p,
.section.plum .section-lede {
  color: rgba(255, 253, 250, 0.8);
}

.section-header {
  max-width: 54rem;
  margin-bottom: clamp(2.25rem, 5vw, 4.5rem);
}

.section-header.center {
  margin-inline: auto;
  text-align: center;
}

.section-header.center .eyebrow {
  justify-content: center;
}

.section-lede {
  max-width: 44rem;
  margin-bottom: 0;
  color: var(--ink-soft);
  font-size: clamp(1.05rem, 1.7vw, 1.25rem);
}

.section-header.center .section-lede {
  margin-inline: auto;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(2.5rem, 7vw, 7rem);
  align-items: center;
}

.split.wide-visual {
  grid-template-columns: minmax(18rem, 0.82fr) minmax(0, 1.18fr);
}

.copy-stack > *:last-child {
  margin-bottom: 0;
}

.copy-stack p {
  color: var(--ink-soft);
}

.pull-quote {
  margin: 1.5rem 0;
  padding: 1.2rem 1.35rem;
  border: 1px solid rgba(89, 59, 95, 0.12);
  border-radius: var(--radius-sm);
  background: rgba(255, 253, 250, 0.65);
  color: var(--plum-deep);
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 2vw, 1.5rem);
  font-weight: 740;
  line-height: 1.35;
}

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

.feature-card,
.answer-card,
.price-card,
.proof-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(255, 253, 250, 0.74);
  box-shadow: var(--shadow-sm);
}

.feature-card {
  min-height: 18rem;
  padding: 1.55rem;
}

.feature-card.tall {
  min-height: 25rem;
}

.feature-card p,
.answer-card p,
.proof-card p {
  margin-bottom: 0;
  color: var(--ink-soft);
}

.feature-card.cat-feature {
  padding-bottom: 12rem;
}

.feature-card.cat-feature img {
  position: absolute;
  left: 50%;
  bottom: -1.8rem;
  width: min(85%, 19rem);
  transform: translateX(-50%);
  mix-blend-mode: normal;
}

.about-cat-cluster,
.intelligence-proof-stack {
  position: relative;
  min-height: 39rem;
}

.about-cat-cluster img,
.intelligence-proof-stack > img {
  position: absolute;
  pointer-events: none;
  user-select: none;
  filter: drop-shadow(0 1.25rem 1.25rem rgba(58, 38, 45, 0.15));
}

.about-cat-main {
  z-index: 3;
  left: 50%;
  bottom: -3.5rem;
  width: min(68%, 22rem);
  transform: translateX(-50%);
}

.about-cat-box {
  z-index: 2;
  left: -1rem;
  bottom: -4rem;
  width: min(58%, 20rem);
  transform: rotate(-5deg);
}

.about-cat-water {
  z-index: 1;
  right: -2rem;
  bottom: -4rem;
  width: min(56%, 19rem);
  transform: rotate(5deg);
}

.intelligence-proof-stack {
  display: grid;
  place-items: center;
}

.intelligence-proof-stack .app-phone {
  z-index: 3;
}

.guide-cat-top {
  z-index: 4;
  left: 5%;
  top: -2rem;
  width: min(34%, 11rem);
  transform: rotate(-7deg);
}

.guide-cat-peek {
  z-index: 2;
  right: 0;
  bottom: 1rem;
  width: min(34%, 11rem);
  transform: scaleX(-1) rotate(-2deg);
}

.screen-stage {
  position: relative;
  min-height: 36rem;
  perspective: 1200px;
}

.phone-shot {
  position: absolute;
  width: clamp(12rem, 24vw, 17.5rem);
  aspect-ratio: 9 / 19.5;
  overflow: hidden;
  border: 7px solid #201b1f;
  border-radius: 2.4rem;
  background: #ede7df;
  box-shadow: var(--shadow-lg);
  transform-origin: center bottom;
}

.phone-shot::before {
  content: "";
  position: absolute;
  z-index: 2;
  top: 0.45rem;
  left: 50%;
  width: 34%;
  height: 1.1rem;
  border-radius: 999px;
  background: #201b1f;
  transform: translateX(-50%);
}

.phone-shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.phone-shot:nth-child(1) {
  z-index: 3;
  left: 29%;
  top: 0;
  transform: rotate(-1deg);
}

.phone-shot:nth-child(2) {
  z-index: 2;
  left: 4%;
  top: 3.5rem;
  transform: rotate(-10deg) translateZ(-4rem);
}

.phone-shot:nth-child(3) {
  z-index: 1;
  right: 0;
  top: 4rem;
  transform: rotate(9deg) translateZ(-4rem);
}

.screen-caption {
  position: absolute;
  z-index: 4;
  right: 0;
  bottom: 0;
  max-width: 15rem;
  padding: 0.75rem 0.9rem;
  border-radius: 1rem;
  background: var(--plum-deep);
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 700;
  box-shadow: var(--shadow-sm);
}

.big-line {
  margin: 0.4rem 0 0;
  color: var(--plum);
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 7vw, 5.5rem);
  font-weight: 850;
  line-height: 0.92;
  letter-spacing: -0.06em;
}

.text-link {
  display: inline-flex;
  margin-top: 0.9rem;
  color: var(--plum);
  font-weight: 800;
}

.brand-qualifier {
  max-width: 56rem;
  margin: 1rem auto 0;
  color: var(--ink-soft);
  font-size: 0.86rem;
  text-align: center;
}

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

.activity-card {
  position: relative;
  min-height: 26rem;
  overflow: hidden;
  border-radius: var(--radius-lg);
  padding: 1.7rem;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}

.activity-card:nth-child(2),
.activity-card:nth-child(3) {
  background: var(--cream);
}

.activity-card p {
  max-width: 25rem;
  color: var(--ink-soft);
}

.activity-card img {
  position: absolute;
  right: -2rem;
  bottom: -2.25rem;
  width: min(64%, 23rem);
  max-height: 72%;
  object-fit: contain;
  mix-blend-mode: normal;
}

.activity-card.wide-cat img {
  right: -1rem;
  width: min(72%, 27rem);
}

.padr-plus-panel {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 2rem;
  padding: clamp(1.5rem, 5vw, 4rem);
  border-radius: var(--radius-lg);
  background: var(--plum-deep);
  color: var(--white);
  box-shadow: var(--shadow-lg);
}

.padr-plus-panel::after {
  content: "+";
  position: absolute;
  right: -0.02em;
  bottom: -0.32em;
  color: rgba(255, 255, 255, 0.055);
  font-family: var(--font-display);
  font-size: clamp(20rem, 44vw, 40rem);
  font-weight: 900;
  line-height: 1;
  pointer-events: none;
}

.plus-copy,
.plus-features {
  position: relative;
  z-index: 1;
}

.plus-kicker {
  display: inline-flex;
  margin-bottom: 1.1rem;
  padding: 0.4rem 0.7rem;
  border-radius: 999px;
  background: var(--custard);
  color: var(--plum-deep);
  font-size: 0.8rem;
  font-weight: 840;
}

.plus-copy h2 {
  font-size: clamp(3rem, 7vw, 6.2rem);
}

.plus-copy p {
  color: rgba(255, 253, 250, 0.8);
}

.plus-features {
  display: grid;
  gap: 0.7rem;
}

.plus-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1rem;
  align-items: center;
  padding: 0.86rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.07);
}

.plus-row span:first-child {
  color: rgba(255, 253, 250, 0.76);
}

.plus-row strong {
  text-align: right;
}

.catday {
  position: relative;
  min-height: min(72rem, 66.6667vw);
  display: grid;
  align-items: center;
  overflow: hidden;
  background: #c68c59;
  color: var(--white);
}

.catday-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #c68c59;
}

.catday::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(43, 27, 22, 0.7) 0%, rgba(43, 27, 22, 0.26) 48%, transparent 75%);
}

.catday-copy {
  position: relative;
  z-index: 1;
  width: min(40rem, 82%);
  padding-block: 6rem;
}

.catday-copy p {
  color: rgba(255, 253, 250, 0.84);
  font-size: clamp(1.05rem, 1.7vw, 1.24rem);
}

.kastardo-stage {
  min-height: 40rem;
  position: relative;
}

.kastardo-orbit {
  position: absolute;
  inset: 0;
}

.kastardo-orbit figure {
  position: absolute;
  margin: 0;
  overflow: hidden;
  border-radius: 45% 45% 1.5rem 1.5rem;
  background: #fff5e8;
  box-shadow: var(--shadow-md);
}

.kastardo-orbit figure:nth-child(1) {
  z-index: 3;
  left: 30%;
  top: 0;
  width: 34%;
  transform: rotate(-2deg);
}

.kastardo-orbit figure:nth-child(2) {
  left: 2%;
  top: 8rem;
  width: 31%;
  transform: rotate(-8deg);
}

.kastardo-orbit figure:nth-child(3) {
  right: 0;
  top: 10rem;
  width: 34%;
  transform: rotate(8deg);
}

.kastardo-orbit img {
  width: 100%;
  aspect-ratio: 1 / 1.12;
  object-fit: contain;
  mix-blend-mode: multiply;
}

.baby-card {
  position: relative;
  min-height: 31rem;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--cream);
  box-shadow: var(--shadow-md);
}

.baby-card img {
  position: absolute;
  right: -1rem;
  bottom: -2rem;
  width: min(74%, 27rem);
  filter: drop-shadow(0 20px 24px rgba(45, 36, 33, 0.16));
}

.baby-card .baby-note {
  position: relative;
  z-index: 1;
  width: min(20rem, 65%);
  margin: 1.5rem;
  padding: 1rem;
  border-radius: 1.25rem;
  background: rgba(255, 253, 250, 0.88);
  box-shadow: var(--shadow-sm);
}

.hardware-window {
  position: relative;
  overflow: hidden;
  border-block: 1px solid var(--line);
  background: rgba(255, 253, 250, 0.62);
  mask-image: linear-gradient(90deg, transparent, #000 9%, #000 91%, transparent);
}

.hardware-track {
  width: max-content;
  display: flex;
  gap: 0;
  padding: 1rem 0;
  animation: hardware-loop 25s linear infinite;
  will-change: transform;
}

.hardware-cycle {
  flex: none;
  display: flex;
  gap: 0.75rem;
  padding-right: 0.75rem;
}

.hardware-badge {
  min-width: 11rem;
  min-height: 4.7rem;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 1.35rem;
  background: var(--white);
  color: var(--plum-deep);
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 790;
  box-shadow: 0 6px 18px rgba(45, 36, 33, 0.07);
}

@keyframes hardware-loop {
  to { transform: translateX(-50%); }
}

.support-note {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  align-items: start;
  margin-top: 1.5rem;
  padding: 1.15rem;
  border: 1px solid rgba(114, 131, 107, 0.28);
  border-radius: 1.25rem;
  background: rgba(220, 230, 214, 0.62);
}

.support-note strong {
  display: block;
  margin-bottom: 0.2rem;
  font-family: var(--font-display);
}

.support-note p {
  margin: 0;
  color: var(--ink-soft);
}

.support-icon {
  width: 2.8rem;
  height: 2.8rem;
  display: grid;
  place-items: center;
  border-radius: 1rem;
  background: var(--sage);
  color: var(--white);
  font-weight: 850;
}

.comparison-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.comparison {
  width: 100%;
  min-width: 52rem;
  border-collapse: collapse;
  font-size: 0.93rem;
}

.comparison caption {
  padding: 1.3rem 1.4rem 0.5rem;
  color: var(--ink-soft);
  text-align: left;
}

.comparison th,
.comparison td {
  padding: 1rem 1.1rem;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.comparison th {
  color: var(--plum-deep);
  font-family: var(--font-display);
}

.comparison thead th:nth-child(2),
.comparison tbody td:nth-child(2) {
  background: rgba(246, 201, 131, 0.18);
}

.comparison tbody tr:last-child th,
.comparison tbody tr:last-child td {
  border-bottom: 0;
}

.yes {
  color: #3f6c49;
  font-weight: 820;
}

.varies {
  color: #8a5d2e;
  font-weight: 720;
}

.origin-card {
  position: relative;
  overflow: hidden;
  min-height: 38rem;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.95fr);
  border-radius: var(--radius-lg);
  background: var(--plum-deep);
  color: var(--white);
  box-shadow: var(--shadow-lg);
}

.origin-figure {
  min-width: 0;
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  margin: 0;
  background: #f4f0eb;
}

.origin-figure picture {
  min-height: 0;
  display: block;
}

.origin-photo {
  display: block;
  min-height: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.photo-caption {
  display: block;
  margin: 0;
  padding: 1rem 1.25rem 1.05rem;
  background: var(--plum-deep);
  color: var(--white);
  font-family: var(--font-display);
  font-size: clamp(1rem, 1.4vw, 1.2rem);
  font-weight: 820;
  line-height: 1.35;
  text-align: center;
}

.origin-copy {
  padding: clamp(2rem, 6vw, 5rem);
}

.origin-copy p {
  color: rgba(255, 253, 250, 0.8);
}

.origin-signoff {
  color: var(--custard-soft) !important;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 760;
}

.faq-list {
  display: grid;
  gap: 0.75rem;
}

.faq-list details {
  border: 1px solid var(--line);
  border-radius: 1.2rem;
  background: rgba(255, 253, 250, 0.72);
  box-shadow: 0 6px 18px rgba(45, 36, 33, 0.05);
}

.answer-card {
  padding: clamp(1.25rem, 3vw, 1.8rem);
  border: 1px solid var(--line);
  border-radius: 1.2rem;
  background: rgba(255, 253, 250, 0.76);
  box-shadow: 0 6px 18px rgba(45, 36, 33, 0.05);
}

.answer-card h3 {
  margin-bottom: 0.55rem;
  color: var(--plum-deep);
  font-size: clamp(1.05rem, 2vw, 1.25rem);
}

.answer-card p {
  margin: 0;
  color: var(--ink-soft);
}

.faq-list summary {
  min-height: 4.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.15rem;
  color: var(--plum-deep);
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 760;
  cursor: pointer;
  list-style: none;
}

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

.faq-list summary::after {
  content: "+";
  flex: 0 0 auto;
  width: 2rem;
  height: 2rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--cream);
  color: var(--plum);
  font-size: 1.25rem;
  transition: transform 180ms ease;
}

.faq-list details[open] summary::after {
  transform: rotate(45deg);
}

.faq-answer {
  padding: 0 1.15rem 1.2rem;
  color: var(--ink-soft);
}

.faq-answer p:last-child {
  margin-bottom: 0;
}

.cta-card {
  position: relative;
  overflow: hidden;
  padding: clamp(2.25rem, 7vw, 5.5rem);
  border-radius: var(--radius-lg);
  background: var(--custard-soft);
  color: var(--plum-deep);
  text-align: center;
  box-shadow: var(--shadow-md);
}

.cta-card::before,
.cta-card::after {
  content: "";
  position: absolute;
  width: 12rem;
  height: 12rem;
  border: 2rem solid rgba(255, 253, 250, 0.26);
  border-radius: 50%;
}

.cta-card::before {
  top: -7rem;
  left: -5rem;
}

.cta-card::after {
  right: -5rem;
  bottom: -7rem;
}

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

.cta-card h2 {
  max-width: 14ch;
  margin-inline: auto;
}

.cta-card p {
  max-width: 40rem;
  margin-inline: auto;
}

.cta-card .button-row {
  justify-content: center;
}

.page-hero {
  position: relative;
  overflow: hidden;
  padding: 10rem 0 5.5rem;
  background: var(--cream);
}

.page-hero::after {
  content: "";
  position: absolute;
  right: -8rem;
  bottom: -12rem;
  width: 34rem;
  height: 34rem;
  border: 7rem solid rgba(227, 154, 71, 0.12);
  border-radius: 50%;
}

.page-hero .shell {
  position: relative;
  z-index: 1;
}

.page-hero h1 {
  max-width: 14ch;
  color: var(--plum-deep);
  font-size: clamp(3.2rem, 8vw, 7rem);
}

.page-hero p {
  max-width: 46rem;
  color: var(--ink-soft);
  font-size: clamp(1.08rem, 2vw, 1.3rem);
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-bottom: 1.25rem;
  color: var(--ink-soft);
  font-size: 0.82rem;
  font-weight: 700;
}

.breadcrumb a {
  text-decoration: none;
}

.breadcrumb span[aria-current="page"] {
  color: var(--plum);
}

.toc {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin: 1.5rem 0 0;
}

.toc a {
  display: inline-flex;
  align-items: center;
  min-height: 2.6rem;
  padding: 0.48rem 0.72rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 253, 250, 0.65);
  color: var(--plum-deep);
  font-size: 0.82rem;
  font-weight: 720;
  text-decoration: none;
}

.prose {
  width: min(calc(100% - 2rem), 52rem);
  margin-inline: auto;
}

.prose h2 {
  margin-top: 3.7rem;
  font-size: clamp(2rem, 4vw, 3.4rem);
}

.prose h3 {
  margin-top: 2rem;
}

.prose p,
.prose li {
  color: var(--ink-soft);
}

.prose li + li {
  margin-top: 0.5rem;
}

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

.answer-card {
  padding: 1.45rem;
}

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

.price-card {
  padding: clamp(1.5rem, 4vw, 2.5rem);
}

.price-card.featured {
  border-color: rgba(89, 59, 95, 0.3);
  background: var(--plum-deep);
  color: var(--white);
}

.price-card.featured p,
.price-card.featured li {
  color: rgba(255, 253, 250, 0.78);
}

.price {
  display: flex;
  align-items: baseline;
  gap: 0.3rem;
  margin: 1.1rem 0;
}

.price strong {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 4rem);
  letter-spacing: -0.05em;
}

.check-list {
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 1.65rem;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--custard);
  font-weight: 900;
}

.site-footer {
  padding: 4rem 0 2rem;
  background: var(--plum-deep);
  color: rgba(255, 253, 250, 0.76);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 2rem;
}

.footer-brand {
  max-width: 22rem;
}

.footer-brand .brand {
  color: var(--white);
}

.footer-brand p {
  margin-top: 1rem;
}

.footer-column h2 {
  margin-bottom: 0.8rem;
  color: var(--white);
  font-size: 0.9rem;
  letter-spacing: 0;
}

.footer-column a {
  display: block;
  width: fit-content;
  margin: 0.45rem 0;
  color: rgba(255, 253, 250, 0.74);
  font-size: 0.9rem;
  text-decoration: none;
}

.footer-column a:hover {
  color: var(--custard-soft);
}

.footer-bottom {
  margin-top: 3rem;
  padding-top: 1.25rem;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.78rem;
}

.apple-credit {
  max-width: 62rem;
  margin: 1rem 0 0;
  color: rgba(255, 253, 250, 0.58);
  font-size: 0.7rem;
  line-height: 1.55;
}

.footer-signature {
  display: grid;
  justify-items: center;
  gap: 0.45rem;
  margin-top: 2.25rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 253, 250, 0.82);
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 760;
  text-align: center;
}

.footer-signature p {
  margin: 0;
  color: inherit;
  font: inherit;
}

.footer-signature a {
  display: inline-flex;
  align-items: center;
  gap: 0.42rem;
  color: #d7c5ff;
  text-decoration: none;
}

.footer-signature img {
  width: 1.45rem;
  height: 1.45rem;
  object-fit: contain;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(2rem);
  transition:
    opacity 700ms ease var(--delay, 0ms),
    transform 850ms cubic-bezier(0.2, 0.75, 0.2, 1) var(--delay, 0ms);
}

[data-reveal="left"] {
  transform: translateX(-2rem) rotate(-0.6deg);
}

[data-reveal="right"] {
  transform: translateX(2rem) rotate(0.6deg);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

@supports (animation-timeline: view()) {
  [data-scroll-title] {
    animation: title-enter both cubic-bezier(0.2, 0.75, 0.2, 1);
    animation-timeline: view();
    animation-range: entry 10% cover 32%;
  }

  .phone-shot[data-scroll-card] {
    animation: screen-settle both cubic-bezier(0.2, 0.75, 0.2, 1);
    animation-timeline: view();
    animation-range: entry 8% cover 36%;
  }
}

@keyframes title-enter {
  from { opacity: 0; transform: translateY(1.4em); letter-spacing: -0.075em; }
  to { opacity: 1; transform: translateY(0); letter-spacing: -0.045em; }
}

@keyframes screen-settle {
  from { opacity: 0; translate: 0 5rem; rotate: 0 0 1 9deg; }
  to { opacity: 1; translate: 0 0; }
}

@media (max-width: 70rem) {
  .nav-link.desktop-secondary {
    display: none;
  }

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

  .custard-peek {
    right: -2rem;
    width: 20rem;
  }
}

@media (max-width: 56rem) {
  .site-nav {
    min-height: 4.15rem;
    border-radius: 1.35rem;
  }

  .menu-toggle {
    display: block;
  }

  .nav-cta {
    margin-left: 0;
  }

  .nav-links {
    position: fixed;
    inset: 5.45rem 0.65rem auto;
    max-height: calc(100svh - 6.1rem);
    overflow-y: auto;
    display: grid;
    align-items: stretch;
    gap: 0.35rem;
    padding: 0.65rem;
    border: 1px solid rgba(255, 255, 255, 0.7);
    border-radius: 1.35rem;
    background: rgba(255, 248, 239, 0.97);
    box-shadow: var(--shadow-md);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-0.7rem);
    transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
  }

  .nav-links[data-open="true"] {
    opacity: 1;
    visibility: visible;
    transform: none;
  }

  .nav-link,
  .nav-dropdown-button {
    justify-content: flex-start;
    min-height: 3rem;
    padding-inline: 1rem;
  }

  .nav-link.desktop-secondary {
    display: flex;
  }

  .guide-menu {
    position: static;
    width: 100%;
    max-height: 0;
    padding: 0;
    border: 0;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    overflow: hidden;
    background: transparent;
  }

  .guide-menu[data-open="true"] {
    max-height: 30rem;
    padding: 0.35rem;
  }

  .hero-content {
    padding-top: 8rem;
    padding-bottom: 14rem;
  }

  .hero::before {
    background:
      linear-gradient(0deg, rgba(30, 20, 31, 0.88) 0%, rgba(30, 20, 31, 0.4) 74%),
      linear-gradient(90deg, rgba(30, 20, 31, 0.58), rgba(30, 20, 31, 0.18));
  }

  .custard-peek {
    right: -3.2rem;
    bottom: -5rem;
    width: 18rem;
  }

  .split,
  .split.wide-visual,
  .padr-plus-panel,
  .origin-card {
    grid-template-columns: 1fr;
  }

  .origin-photo {
    max-height: 34rem;
  }

  .screen-stage {
    min-height: 33rem;
  }

  .phone-shot:nth-child(1) { left: 32%; }
  .activity-card { min-height: 24rem; }
  .catday {
    min-height: 0;
    display: block;
  }

  .catday > picture {
    display: block;
    width: 100%;
  }

  .catday-media {
    position: relative;
    display: block;
    width: 100%;
    height: auto;
    object-position: center;
  }

  .catday::after {
    display: none;
  }

  .catday-copy {
    width: min(38rem, 100%);
    padding-block: 3.5rem 4rem;
  }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 42rem) {
  html {
    scroll-padding-top: 5.5rem;
  }

  .shell,
  .narrow,
  .prose {
    width: min(calc(100% - 1.25rem), var(--max));
  }

  .site-nav {
    width: calc(100% - 0.75rem);
    margin-top: 0.38rem;
  }

  .brand span {
    display: none;
  }

  .nav-cta {
    min-height: 2.75rem;
    padding-inline: 0.85rem;
    font-size: 0.82rem;
  }

  .nav-links {
    inset: 5rem 0.38rem auto;
  }

  h1 {
    font-size: clamp(3rem, 15vw, 5.1rem);
  }

  .hero-content {
    padding-bottom: 13rem;
  }

  .hero-actions .button,
  .button-row .button {
    width: 100%;
  }

  .motion-control {
    right: 0.65rem;
    bottom: 0.65rem;
  }

  .cat-shelf {
    padding-top: 2.9rem;
  }

  .cat-card {
    width: 13rem;
    height: 12.5rem;
  }

  .feature-grid,
  .activity-grid,
  .answer-grid,
  .price-grid {
    grid-template-columns: 1fr;
  }

  .feature-card,
  .feature-card.tall {
    min-height: 16rem;
  }

  .feature-card.cat-feature {
    min-height: 25rem;
  }

  .screen-stage {
    min-height: 28rem;
  }

  .phone-shot {
    width: 11.5rem;
    border-width: 5px;
    border-radius: 1.9rem;
  }

  .phone-shot:nth-child(1) { left: 26%; }
  .phone-shot:nth-child(2) { left: -3%; }
  .phone-shot:nth-child(3) { right: -3%; }

  .screen-caption {
    display: none;
  }

  .activity-card {
    min-height: 25rem;
  }

  .activity-card img {
    width: min(78%, 23rem);
  }

  .padr-plus-panel {
    padding: 1.15rem;
  }

  .plus-row {
    grid-template-columns: 1fr;
    gap: 0.25rem;
  }

  .plus-row strong {
    text-align: left;
  }

  .catday-copy {
    padding-block: 3rem 3.5rem;
  }

  .kastardo-stage {
    min-height: 29rem;
  }

  .kastardo-orbit figure:nth-child(1) { left: 25%; width: 46%; }
  .kastardo-orbit figure:nth-child(2) { left: -5%; top: 8rem; width: 42%; }
  .kastardo-orbit figure:nth-child(3) { right: -5%; top: 9rem; width: 44%; }

  .baby-card {
    min-height: 28rem;
  }

  .baby-card img {
    width: 86%;
  }

  .hardware-window {
    mask-image: none;
  }

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

  .origin-copy {
    padding: 1.6rem;
  }

  .page-hero {
    padding-top: 8rem;
  }

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

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

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

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

  [data-reveal] {
    opacity: 1;
    transform: none;
  }

  .cat-parade,
  .hardware-track {
    width: 100%;
    flex-wrap: wrap;
    justify-content: center;
    transform: none !important;
  }

  .hardware-cycle {
    flex-wrap: wrap;
    justify-content: center;
  }

  .cat-parade [aria-hidden="true"],
  .hardware-track [aria-hidden="true"] {
    display: none;
  }

  .hero-video {
    display: none;
  }
}

@media print {
  .site-header,
  .motion-control,
  .cat-shelf,
  .site-footer {
    display: none !important;
  }

  body {
    background: #fff;
    color: #000;
  }

  .page-hero,
  .section {
    padding-block: 2rem;
    background: #fff !important;
    color: #000 !important;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}

/* Padr homepage. Screenshot-led, cat-led, and deliberately concise. */

.home-revamp .rotating-word[data-word="precisely"] {
  color: #cbb8ff;
}

.home-revamp .hero-content {
  width: min(64rem, 100%);
}

.home-revamp .hero {
  overflow: visible;
}

.home-revamp .custard-peek {
  z-index: 5;
  bottom: -9rem;
  transform: rotate(-2.5deg);
  filter: drop-shadow(0 24px 24px rgba(20, 12, 21, 0.28));
}

.home-revamp .hero-lede {
  max-width: 38rem;
  font-size: clamp(1.15rem, 2.2vw, 1.55rem);
}

.proof-chapter {
  position: relative;
  min-height: 56rem;
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: clamp(5.5rem, 9vw, 8rem) 0;
}

.chapter-today {
  background: #fff8ef;
}

.chapter-storyline {
  background: #f8e2da;
}

.chapter-intelligence {
  background: #e8def8;
}

.chapter-food {
  background: #f4c77f;
}

.chapter-mood {
  background: #dfe7df;
}

.chapter-pawtfolio {
  background: #f8e5d1;
}

.chapter-devices {
  background: #dce6d6;
}

.chapter-kastardos {
  background: #f0d9df;
}

.proof-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.83fr) minmax(31rem, 1.17fr);
  gap: clamp(2rem, 6vw, 7rem);
  align-items: center;
}

.proof-grid-reverse {
  grid-template-columns: minmax(31rem, 1.17fr) minmax(0, 0.83fr);
}

.proof-copy {
  position: relative;
  z-index: 5;
}

.proof-copy h2 {
  max-width: 9ch;
  font-size: clamp(3.3rem, 6.3vw, 6.7rem);
}

.proof-copy p {
  max-width: 31rem;
  color: rgba(45, 36, 33, 0.76);
  font-size: clamp(1rem, 1.6vw, 1.22rem);
}

.proof-copy .chapter-line {
  color: var(--plum-deep);
  font-family: var(--font-display);
  font-size: clamp(1.28rem, 2.2vw, 1.85rem);
  font-weight: 760;
  letter-spacing: -0.035em;
  line-height: 1.25;
}

.proof-copy .feature-note {
  width: fit-content;
  margin-top: 1.4rem;
  padding: 0.58rem 0.82rem;
  border: 1px solid rgba(55, 35, 64, 0.18);
  border-radius: 999px;
  background: rgba(255, 253, 250, 0.62);
  color: var(--plum-deep);
  font-family: var(--font-display);
  font-weight: 790;
}

.chapter-mood .proof-copy h2,
.chapter-devices .proof-copy h2 {
  max-width: 11ch;
  font-size: clamp(3rem, 5.4vw, 5.9rem);
}

.cat-screen-scene {
  position: relative;
  min-height: 49rem;
  display: grid;
  place-items: center;
  isolation: isolate;
}

.phone-cat-rig {
  position: relative;
  width: fit-content;
  isolation: isolate;
}

.app-phone {
  position: relative;
  z-index: 3;
  width: clamp(18rem, 25vw, 23rem);
  margin: 0;
  overflow: hidden;
  border: 8px solid #211d22;
  border-radius: 3.05rem;
  background: #211d22;
  box-shadow: 0 3rem 5rem rgba(60, 38, 44, 0.2), 0 0.4rem 1.1rem rgba(60, 38, 44, 0.16);
}

.app-phone::before {
  content: "";
  position: absolute;
  z-index: 2;
  top: 0.55rem;
  left: 50%;
  width: 31%;
  height: 1.25rem;
  border-radius: 999px;
  background: #161317;
  transform: translateX(-50%);
}

.app-phone img {
  width: 100%;
  height: auto;
  border-radius: 2.5rem;
}

.app-phone picture {
  display: block;
}

.storyline-scene {
  min-height: 51rem;
}

.storyline-phone-rig {
  width: min(100%, 42rem);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: end;
  gap: clamp(0.8rem, 1.6vw, 1.25rem);
}

.storyline-phone-rig .storyline-phone {
  width: min(100%, 19rem);
  justify-self: center;
  border-width: 7px;
}

.placeholder-phone {
  aspect-ratio: 690 / 1500;
}

.screen-placeholder {
  position: absolute;
  inset: 0;
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 0.75rem;
  padding: 3rem 2rem;
  border-radius: 2.5rem;
  background: #fffaf3;
  color: rgba(55, 35, 64, 0.62);
  text-align: center;
}

.screen-placeholder::after {
  content: "";
  position: absolute;
  inset: 3.25rem 1.25rem 1.25rem;
  border: 1px solid rgba(55, 35, 64, 0.12);
  border-radius: 2rem;
  pointer-events: none;
}

.placeholder-mark {
  color: var(--plum-deep);
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 820;
}

.scene-cat,
.den-cat,
.tiny-cat {
  position: absolute;
  z-index: 5;
  pointer-events: none;
  user-select: none;
  filter: drop-shadow(0 1.25rem 1.25rem rgba(58, 38, 45, 0.14));
}

.today-reach {
  top: auto;
  right: -7.5rem;
  bottom: 0;
  width: clamp(11rem, 17vw, 16rem);
  transform: rotate(-4deg);
}

.intelligence-peek {
  z-index: 2;
  right: -7.1rem;
  top: 13.5rem;
  width: clamp(8.5rem, 13vw, 13rem);
  clip-path: inset(0 0 34% 0);
  transform: rotate(2deg);
}

.food-phone-rig,
.mood-phone-rig {
  margin-top: clamp(7rem, 12vw, 11rem);
}

.food-custard {
  z-index: 6;
  left: -7rem;
  bottom: 0;
  width: clamp(12rem, 18vw, 17rem);
  transform: rotate(2deg);
}

.food-calico {
  right: -1rem;
  top: auto;
  bottom: calc(100% - 0.75rem);
  width: clamp(9rem, 14vw, 13rem);
  transform: rotate(-3deg);
}

.mood-kitten {
  left: 50%;
  bottom: calc(100% - 0.45rem);
  width: clamp(14rem, 22vw, 20rem);
  transform: translateX(-50%) rotate(-2deg);
}

.pawtfolio-memory {
  right: -7rem;
  bottom: 0;
  width: clamp(11rem, 17vw, 16rem);
  transform: rotate(4deg);
}

.devices-water {
  left: -7rem;
  bottom: 0;
  width: clamp(11rem, 17vw, 16rem);
  transform: rotate(-3deg);
}

.kastardo-pounce {
  right: -2rem;
  bottom: 0;
  width: clamp(13rem, 20vw, 19rem);
  transform: rotate(8deg);
}

.kastardo-zoom {
  left: -5rem;
  bottom: 5rem;
  width: clamp(10rem, 16vw, 16rem);
  transform: rotate(12deg);
}

.den-interlude {
  position: relative;
  min-height: 43rem;
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: 7rem 0 9rem;
  background: #d9e4d4;
}

.den-interlude-copy {
  position: relative;
  z-index: 4;
  max-width: 66rem;
  text-align: center;
}

.den-interlude-copy h2 {
  max-width: 13ch;
  margin-inline: auto;
}

.den-interlude-copy > p:not(.eyebrow) {
  max-width: 43rem;
  margin-inline: auto;
  color: var(--ink-soft);
  font-size: clamp(1.05rem, 1.8vw, 1.3rem);
}

.den-interlude-copy .button-row {
  justify-content: center;
}

.den-box {
  left: -1rem;
  bottom: -4rem;
  width: clamp(14rem, 23vw, 22rem);
  transform: rotate(4deg);
}

.den-zoom {
  right: 7%;
  top: -1rem;
  width: clamp(9rem, 14vw, 15rem);
  transform: rotate(-4deg);
}

.tiny-days {
  position: relative;
  min-height: 42rem;
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: 6rem 0;
  background: #f7e6cf;
}

.tiny-days-copy {
  position: relative;
  z-index: 4;
  width: min(calc(100% - 2rem), 57rem);
  text-align: center;
}

.tiny-days-copy h2 {
  max-width: 13ch;
  margin-inline: auto;
}

.tiny-days-copy > p:not(.eyebrow) {
  color: var(--ink-soft);
  font-size: clamp(1.05rem, 1.8vw, 1.28rem);
}

.tiny-custard {
  left: -1.5rem;
  bottom: -4rem;
  width: clamp(15rem, 26vw, 25rem);
  transform: rotate(8deg);
}

.tiny-maine {
  right: -1.5rem;
  bottom: -5rem;
  width: clamp(14rem, 24vw, 24rem);
  transform: rotate(-6deg);
}

.home-revamp .hardware-window {
  border-block-color: rgba(52, 38, 58, 0.12);
  background: transparent;
}

.chapter-devices .hardware-window {
  margin-top: clamp(1rem, 4vw, 3rem);
}

.chapter-devices .brand-qualifier {
  width: min(calc(100% - 2.5rem), 58rem);
}

.home-revamp .hardware-badge {
  min-width: 8rem;
  min-height: 8rem;
  justify-content: center;
  border-radius: 2rem;
  background: rgba(255, 253, 250, 0.82);
}

.hardware-logo {
  width: 4.75rem;
  height: 4.75rem;
  object-fit: contain;
  border-radius: 1.25rem;
}

.padr-journey {
  position: relative;
  padding: clamp(6rem, 10vw, 9rem) 0;
  background: #e8def8;
}

.journey-heading {
  margin-bottom: clamp(3.5rem, 7vw, 6rem);
  text-align: center;
}

.journey-heading h2 {
  max-width: 13ch;
  margin-inline: auto;
}

.journey-layout {
  display: grid;
  grid-template-columns: minmax(14rem, 0.42fr) minmax(0, 1fr);
  gap: clamp(2.5rem, 7vw, 8rem);
  align-items: start;
}

.journey-index {
  position: sticky;
  top: 7rem;
  display: grid;
  gap: 0.55rem;
}

.journey-tab {
  display: block;
  padding: 0.95rem 1.1rem;
  border: 1px solid rgba(55, 35, 64, 0.14);
  border-radius: 1.15rem;
  background: rgba(255, 253, 250, 0.56);
  color: rgba(55, 35, 64, 0.7);
  font-family: var(--font-display);
  font-size: clamp(1rem, 1.45vw, 1.18rem);
  font-weight: 780;
  line-height: 1.1;
  text-decoration: none;
  transition: color 180ms ease, background-color 180ms ease, transform 180ms ease;
}

.journey-tab:hover,
.journey-tab:focus-visible {
  color: var(--plum-deep);
  transform: translateX(0.18rem);
}

.journey-tab.is-active {
  border-color: var(--plum-deep);
  background: var(--plum-deep);
  color: var(--white);
}

.journey-panel {
  min-height: 67vh;
  display: grid;
  align-content: center;
  margin-bottom: 1rem;
  padding-inline: clamp(2rem, 4vw, 4rem);
  scroll-margin-top: 7rem;
  border-radius: 2rem;
}

.journey-panel:last-child {
  margin-bottom: 0;
}

.journey-panel:nth-child(1) { background: #fff8ef; }
.journey-panel:nth-child(2) { background: #f9e1d7; }
.journey-panel:nth-child(3) { background: #ece2f8; }
.journey-panel:nth-child(4) { background: #dff0eb; }
.journey-panel:nth-child(5) { background: #faedca; }
.journey-panel:nth-child(6) { background: #f5e1ed; }
.journey-panel:nth-child(7) { background: #e4edf8; }
.journey-panel:nth-child(8) { background: #efe4dc; }

.journey-label {
  margin: 0 0 1rem;
  color: var(--rose);
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 850;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.journey-panel h3 {
  max-width: 15ch;
  margin: 0 0 1.7rem;
  color: var(--plum-deep);
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 5.3vw, 5.4rem);
  font-weight: 820;
  letter-spacing: -0.055em;
  line-height: 0.98;
}

.journey-panel h3 span {
  display: block;
}

.journey-panel > p:not(.journey-label) {
  position: relative;
  max-width: 39rem;
  margin: 0;
  padding: 0.82rem 0 0.82rem 1.55rem;
  border-top: 1px solid rgba(55, 35, 64, 0.13);
  color: rgba(55, 35, 64, 0.78);
  font-size: clamp(1rem, 1.5vw, 1.18rem);
}

.journey-panel > p:not(.journey-label)::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1.22rem;
  width: 0.48rem;
  height: 0.48rem;
  border-radius: 50%;
  background: var(--rose);
}

.difference {
  padding: clamp(6rem, 10vw, 9rem) 0;
  background: var(--paper);
}

.difference .section-header h2 {
  max-width: 13ch;
  margin-inline: auto;
}

.difference-lines {
  max-width: 61rem;
  margin: 3rem auto;
  border-top: 1px solid var(--line);
}

.difference-lines p {
  display: grid;
  grid-template-columns: minmax(13rem, 0.7fr) 1fr;
  gap: 2rem;
  margin: 0;
  padding: 1.45rem 0;
  border-bottom: 1px solid var(--line);
}

.difference-lines strong {
  color: var(--plum-deep);
  font-family: var(--font-display);
  font-size: 1.25rem;
  letter-spacing: -0.025em;
}

.difference-lines span {
  color: var(--ink-soft);
  font-size: 1.05rem;
}

.centre-row {
  justify-content: center;
  margin-top: 1.5rem;
}

.home-revamp .origin-card {
  min-height: 43rem;
}

.home-revamp .origin-copy p {
  max-width: 33rem;
}

.science-section {
  position: relative;
  overflow: clip;
  padding: clamp(6rem, 11vw, 10rem) 0;
  background: var(--plum-deep);
  color: var(--white);
}

.science-section::before {
  content: "";
  position: absolute;
  top: -18rem;
  right: -15rem;
  width: 42rem;
  height: 42rem;
  border: 8rem solid rgba(246, 201, 131, 0.08);
  border-radius: 50%;
  pointer-events: none;
}

.science-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(18rem, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(3rem, 7vw, 8rem);
  align-items: start;
}

.science-heading {
  position: relative;
}

.science-heading h2 {
  max-width: 10ch;
  margin-bottom: 1.5rem;
  font-size: clamp(3.25rem, 6vw, 6.7rem);
  line-height: 0.96;
}

.science-heading .eyebrow {
  color: var(--custard-soft);
}

.science-lede {
  max-width: 35rem;
  margin: 0;
  color: rgba(255, 253, 250, 0.76);
  font-size: clamp(1.05rem, 1.6vw, 1.28rem);
}

.science-principles {
  border-top: 1px solid rgba(255, 253, 250, 0.2);
}

.science-principle {
  display: grid;
  grid-template-columns: minmax(9rem, 0.55fr) minmax(0, 1fr);
  gap: clamp(1.5rem, 4vw, 3.5rem);
  padding: clamp(1.6rem, 3vw, 2.4rem) 0;
  border-bottom: 1px solid rgba(255, 253, 250, 0.2);
}

.science-principle h3,
.science-principle p {
  margin: 0;
}

.science-principle h3 {
  color: var(--custard-soft);
  font-size: clamp(1.3rem, 2.2vw, 1.75rem);
  line-height: 1.12;
}

.science-principle p {
  color: rgba(255, 253, 250, 0.8);
  font-size: clamp(1rem, 1.35vw, 1.15rem);
}

.science-foundations {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(13rem, 0.55fr) minmax(0, 1.45fr);
  gap: clamp(2rem, 5vw, 5rem);
  margin-top: clamp(1rem, 3vw, 2rem);
  padding: clamp(2rem, 5vw, 4rem);
  border-radius: var(--radius-lg);
  background: var(--custard-soft);
  color: var(--plum-deep);
}

.science-foundations-copy > p:last-child {
  max-width: 22rem;
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 2.7vw, 2.25rem);
  font-weight: 790;
  letter-spacing: -0.035em;
  line-height: 1.08;
}

.science-foundations .eyebrow {
  color: var(--plum);
}

.science-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-content: start;
  margin: 0;
  padding: 0;
  border-top: 1px solid rgba(52, 38, 58, 0.24);
  list-style: none;
}

.science-links li {
  border-bottom: 1px solid rgba(52, 38, 58, 0.24);
}

.science-links li:nth-child(odd) {
  padding-right: 1rem;
}

.science-links li:nth-child(even) {
  padding-left: 1rem;
  border-left: 1px solid rgba(52, 38, 58, 0.24);
}

.science-links a {
  min-height: 4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 0;
  color: var(--plum-deep);
  font-weight: 760;
  text-decoration: none;
}

.science-links a::after {
  content: "\2197";
  flex: 0 0 auto;
  font-size: 1.15rem;
}

.science-links a:hover,
.science-links a:focus-visible {
  text-decoration: underline;
}

.science-note {
  grid-column: 2;
  max-width: 48rem;
  margin: -2.5rem 0 0;
  color: rgba(52, 38, 58, 0.72);
  font-size: 0.82rem;
  line-height: 1.5;
}

.home-revamp .final-offer {
  padding: 0;
  background: #f6c983;
}

.home-revamp .final-offer .cta-card {
  width: 100%;
  max-width: none;
  min-height: clamp(42rem, 78vh, 54rem);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: clamp(5rem, 10vw, 9rem) 1.25rem;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  text-align: center;
}

.home-revamp .final-offer .cta-card::before,
.home-revamp .final-offer .cta-card::after {
  display: none;
}

.home-revamp .final-offer .cta-card h2 {
  max-width: 15ch;
  margin-inline: auto;
  font-size: clamp(4rem, 8.8vw, 8.8rem);
  line-height: 0.98;
  letter-spacing: -0.065em;
}

.home-revamp .final-offer .cta-card > p:not(.eyebrow) {
  max-width: 44rem;
  font-size: clamp(1.1rem, 1.8vw, 1.45rem);
}

.home-revamp .final-offer .button-row {
  justify-content: center;
}

.home-revamp .final-store-badge {
  margin-top: 1.5rem;
}

/* Devices. A readable catalogue with brand-first scanning and playful support. */

.devices-hero {
  position: relative;
  min-height: 42rem;
  overflow: hidden;
  background: #f5c884;
}

.devices-hero .shell {
  position: relative;
  z-index: 2;
  padding-right: min(34vw, 28rem);
}

.devices-hero-cat {
  position: absolute;
  z-index: 1;
  right: clamp(-6rem, -2vw, -1rem);
  bottom: -5rem;
  width: clamp(18rem, 34vw, 31rem);
  transform: scaleX(-1) rotate(-3deg);
  filter: drop-shadow(0 1.5rem 1.5rem rgba(56, 35, 50, 0.16));
}

.device-catalogue {
  padding: clamp(5rem, 9vw, 8rem) 0;
  background: var(--cream);
}

.device-catalogue-header {
  max-width: 58rem;
  margin-bottom: clamp(3rem, 6vw, 5rem);
}

.device-catalogue-header h2 {
  max-width: 13ch;
  font-size: clamp(3rem, 6vw, 6.5rem);
  line-height: 0.96;
}

.vendor-block {
  display: grid;
  grid-template-columns: minmax(14rem, 0.7fr) minmax(0, 1.8fr);
  gap: clamp(2rem, 5vw, 5rem);
  padding: clamp(2.8rem, 6vw, 5rem) 0;
  border-top: 1px solid var(--line);
}

.vendor-heading {
  align-self: start;
  display: flex;
  align-items: center;
  gap: 1rem;
  position: sticky;
  top: 8rem;
}

.vendor-heading img {
  width: 4.2rem;
  height: 4.2rem;
  object-fit: contain;
  border-radius: 1.25rem;
  background: var(--white);
  padding: 0.55rem;
  box-shadow: var(--shadow-sm);
}

.vendor-heading h2,
.vendor-heading p,
.model-row p {
  margin: 0;
}

.vendor-heading h2 {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
}

.vendor-heading p,
.model-row p,
.catalogue-note {
  color: var(--ink-soft);
}

.model-rows {
  display: grid;
}

.model-row {
  display: grid;
  grid-template-columns: minmax(10rem, 0.7fr) minmax(12rem, 1fr) minmax(16rem, 1.35fr);
  gap: clamp(1rem, 3vw, 2.5rem);
  padding: 1.8rem 0;
  border-top: 1px solid var(--line);
}

.model-row:first-child {
  border-top: 0;
  padding-top: 0;
}

.model-row h3 {
  margin: 0;
  font-size: 1.15rem;
}

.model-row .model-names {
  color: var(--plum);
  font-weight: 760;
}

.partial-model {
  padding-inline: 1rem;
  border-radius: 1.25rem;
  background: rgba(203, 184, 255, 0.18);
}

.catalogue-note {
  max-width: 62rem;
  margin: 2rem 0 0 auto;
  font-size: 0.9rem;
}

.device-support {
  overflow: hidden;
  background: var(--plum);
  color: var(--white);
}

.device-support-grid {
  min-height: 44rem;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(20rem, 0.85fr);
  gap: clamp(2rem, 7vw, 7rem);
  align-items: center;
  padding-block: clamp(5rem, 9vw, 8rem);
}

.device-support h2 {
  max-width: 12ch;
  font-size: clamp(3rem, 6vw, 6rem);
  line-height: 0.98;
}

.device-support p {
  max-width: 40rem;
  color: rgba(255, 255, 255, 0.78);
}

.support-cat-scene {
  position: relative;
  min-height: 34rem;
  align-self: end;
}

.support-cat-scene img {
  position: absolute;
  right: 2rem;
  bottom: -8rem;
  width: min(100%, 27rem);
  transform: rotate(5deg);
  filter: drop-shadow(0 1.5rem 1.5rem rgba(0, 0, 0, 0.16));
}

.support-cat-scene span {
  position: absolute;
  z-index: 2;
  right: 0;
  top: 4rem;
  max-width: 16rem;
  padding: 0.8rem 1rem;
  border-radius: 1rem;
  background: #f5c884;
  color: var(--plum);
  font-family: var(--font-display);
  font-weight: 800;
  transform: rotate(2deg);
}

@supports (animation-timeline: view()) {
  .app-phone[data-scroll-card] {
    animation: padr-phone-arrive both cubic-bezier(0.2, 0.75, 0.2, 1);
    animation-timeline: view();
    animation-range: entry 8% cover 35%;
  }
}

@keyframes padr-phone-arrive {
  from { opacity: 0; translate: 0 5rem; scale: 0.96; }
  to { opacity: 1; translate: 0 0; scale: 1; }
}

@media (max-width: 62rem) {
  .science-layout {
    grid-template-columns: 1fr;
    gap: 3.5rem;
  }

  .science-heading {
    position: static;
  }

  .science-heading h2 {
    max-width: 12ch;
  }

  .science-foundations {
    grid-column: auto;
    grid-template-columns: 1fr;
  }

  .science-note {
    grid-column: auto;
    margin-top: -1rem;
  }

  .journey-layout {
    grid-template-columns: minmax(12rem, 0.38fr) minmax(0, 1fr);
    gap: 2rem;
  }

  .proof-grid,
  .proof-grid-reverse {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .proof-copy {
    max-width: 44rem;
    text-align: center;
    margin-inline: auto;
  }

  .proof-copy h2,
  .proof-copy p {
    margin-inline: auto;
  }

  .proof-grid-reverse .cat-screen-scene {
    order: 2;
  }

  .proof-grid-reverse .proof-copy {
    order: 1;
  }

  .cat-screen-scene {
    min-height: 47rem;
  }

  .app-phone {
    width: min(22rem, 58vw);
  }
}

@media (max-width: 42rem) {
  .science-section {
    padding-block: 5rem;
  }

  .science-heading h2 {
    font-size: clamp(3rem, 13vw, 4.4rem);
  }

  .science-principle {
    grid-template-columns: 1fr;
    gap: 0.65rem;
  }

  .science-foundations {
    padding: 1.5rem;
    border-radius: 2rem;
  }

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

  .science-links li:nth-child(odd),
  .science-links li:nth-child(even) {
    padding-inline: 0;
    border-left: 0;
  }

  .home-revamp .hero-content {
    width: min(calc(100% - 2rem), 64rem);
    padding-top: 8.5rem;
    padding-bottom: 16rem;
  }

  .home-revamp .hero-lede br {
    display: none;
  }

  .home-revamp .rotating-word {
    min-width: 0;
  }

  .home-revamp .custard-peek {
    right: 0;
    bottom: -9rem;
    width: 17rem;
  }

  .proof-chapter {
    min-height: 0;
    padding: 5rem 0 3rem;
  }

  .proof-copy h2 {
    font-size: clamp(3.1rem, 15vw, 5rem);
  }

  .cat-screen-scene {
    min-height: 39rem;
    margin-inline: -0.5rem;
  }

  .app-phone {
    width: min(17.5rem, 71vw);
    border-width: 6px;
    border-radius: 2.45rem;
  }

  .app-phone img {
    border-radius: 2rem;
  }

  .storyline-scene {
    min-height: 0;
    padding-top: 2rem;
  }

  .storyline-phone-rig {
    width: min(18.5rem, 74vw);
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .storyline-phone-rig .storyline-phone {
    width: 100%;
  }

  .today-reach { right: -4.2rem; top: auto; bottom: 0; width: 9.5rem; }
  .intelligence-peek { right: -4.7rem; top: 10.5rem; width: 8.25rem; clip-path: inset(0 0 38% 0); }
  .food-phone-rig,
  .mood-phone-rig { margin-top: 7rem; }
  .food-custard { left: -3.8rem; bottom: 0; width: 10rem; }
  .food-calico { right: -0.75rem; top: auto; bottom: calc(100% - 0.5rem); width: 8rem; }
  .mood-kitten { left: 50%; bottom: calc(100% - 0.35rem); width: 13.5rem; transform: translateX(-50%) rotate(-2deg); }
  .pawtfolio-memory { right: -4rem; bottom: 0; width: 9.5rem; }
  .devices-water { left: -4.2rem; bottom: 0; width: 9.5rem; }
  .kastardo-pounce { right: -1.5rem; bottom: 0; width: 11rem; }
  .kastardo-zoom { left: -2rem; bottom: 7rem; width: 8rem; }

  .proof-copy .feature-note {
    margin-inline: auto;
  }

  .chapter-devices .button-row {
    justify-content: center;
  }

  .den-interlude {
    min-height: 48rem;
    padding: 5rem 0 14rem;
  }

  .den-interlude-copy {
    align-self: start;
  }

  .den-box { left: -3rem; bottom: -2rem; width: 15rem; }
  .den-zoom { right: -1rem; top: -0.75rem; width: 8.5rem; transform: rotate(-4deg); }

  .home-revamp .catday {
    min-height: 0;
  }

  .tiny-days {
    min-height: 47rem;
    padding: 5rem 0 16rem;
  }

  .tiny-custard { left: -4rem; bottom: -1rem; width: 17rem; }
  .tiny-maine { right: -4rem; bottom: -2rem; width: 16rem; }

  .home-revamp .hardware-badge {
    min-width: 6.5rem;
    min-height: 6.5rem;
    border-radius: 1.6rem;
  }

  .hardware-logo {
    width: 3.75rem;
    height: 3.75rem;
  }

  .padr-journey {
    padding: 5.5rem 0;
  }

  .journey-heading {
    margin-bottom: 2.75rem;
  }

  .journey-layout {
    display: block;
  }

  .journey-index {
    position: sticky;
    z-index: 20;
    top: 5.15rem;
    display: flex;
    gap: 0.45rem;
    margin-inline: -1.25rem;
    padding: 0.7rem 1.25rem;
    overflow-x: auto;
    border-block: 1px solid rgba(55, 35, 64, 0.12);
    background: rgba(232, 222, 248, 0.9);
    backdrop-filter: blur(18px) saturate(1.08);
    scrollbar-width: none;
  }

  .journey-index::-webkit-scrollbar {
    display: none;
  }

  .journey-tab {
    flex: 0 0 auto;
    padding: 0.82rem 1rem;
    white-space: nowrap;
  }

  .journey-tab:hover,
  .journey-tab:focus-visible {
    transform: none;
  }

  .journey-panel {
    min-height: 70svh;
    margin-inline: -1.25rem;
    margin-bottom: 0.85rem;
    padding: 5rem 1.25rem;
    border-radius: 0;
    scroll-margin-top: 10.75rem;
  }

  .journey-panel h3 {
    font-size: clamp(2.8rem, 13vw, 4.6rem);
  }

  .difference-lines p {
    grid-template-columns: 1fr;
    gap: 0.25rem;
  }

  .devices-hero {
    min-height: 45rem;
  }

  .devices-hero .shell {
    padding-right: 1.25rem;
    padding-bottom: 16rem;
  }

  .devices-hero-cat {
    right: -3.5rem;
    bottom: -5rem;
    width: 21rem;
  }

  .vendor-block,
  .model-row,
  .device-support-grid {
    grid-template-columns: 1fr;
  }

  .vendor-heading {
    position: static;
  }

  .model-row {
    gap: 0.5rem;
  }

  .device-support-grid {
    padding-bottom: 0;
  }

  .support-cat-scene {
    min-height: 28rem;
  }

  .support-cat-scene img {
    left: 50%;
    right: auto;
    width: 22rem;
    transform: translateX(-50%) rotate(5deg);
  }

  .support-cat-scene span {
    top: 1rem;
  }

  .about-cat-cluster,
  .intelligence-proof-stack {
    min-height: 34rem;
  }

  .about-cat-box {
    left: -2rem;
  }

  .about-cat-water {
    right: -2rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .app-phone[data-scroll-card] {
    opacity: 1;
    translate: none;
    scale: 1;
  }
}
