/* Self-hosted fonts — no render-blocking Fontshare/Google round-trips */
@font-face {
  font-family: "Onest";
  src: url("/assets/fonts/onest-400.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Onest";
  src: url("/assets/fonts/onest-500.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Onest";
  src: url("/assets/fonts/onest-600.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Onest";
  src: url("/assets/fonts/onest-700.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Sentient";
  src: url("/assets/fonts/sentient-300.woff2") format("woff2");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Sentient";
  src: url("/assets/fonts/sentient-400.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/* CareAmi subpages — matches landing tokens */
:root {
  --ca-bg: #fbfaf6;
  --ca-bg-deep: #f4f2ec;
  --ca-ink: #1c1a15;
  --ca-muted: #52524e;
  --ca-line: rgba(28, 26, 21, 0.12);
  --ca-card: #ffffff;
  --ca-accent: #1c1a15;
  --ca-soft: rgba(28, 26, 21, 0.06);
}

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

html {
  scroll-behavior: smooth;
}

body.ca-page {
  margin: 0;
  min-height: 100vh;
  background: #f7f7f5 !important;
  color: var(--ca-ink);
  font-family: "Onest", system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

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

/* Site header lives in careami-site-nav.fragment.html + careami-framer-nav.css (landing Framer nav). */

.ca-page-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(64px, 10vw, 120px) clamp(20px, 4vw, 40px) clamp(48px, 8vw, 88px);
  border-bottom: 1px solid var(--ca-line);
}

.ca-page-hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 80% 20%, rgba(255, 255, 255, 0.7), transparent 55%),
    linear-gradient(180deg, rgba(251, 250, 246, 0.55), rgba(251, 250, 246, 0.92)),
    url("/assets/ca-hero-bg.jpg") center / cover no-repeat;
  opacity: 0.9;
  transform: scale(1.04);
  animation: ca-hero-drift 18s ease-in-out infinite alternate;
  will-change: transform;
}

@keyframes ca-hero-drift {
  from {
    transform: scale(1.04) translate3d(0, 0, 0);
  }
  to {
    transform: scale(1.08) translate3d(-1.5%, 1%, 0);
  }
}

.ca-page-hero__inner {
  position: relative;
  z-index: 1;
  max-width: 920px;
  margin: 0 auto;
}

.ca-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 18px;
  padding: 6px 14px;
  border-radius: 999px;
  background: var(--ca-soft);
  color: var(--ca-muted);
  font-size: 13px;
  font-weight: 500;
}

.ca-eyebrow::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
}

.ca-page-hero h1 {
  margin: 0 0 18px;
  font-family: "Sentient", Georgia, serif;
  font-weight: 300;
  font-size: clamp(2.4rem, 6vw, 4.4rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
  max-width: 14ch;
}

.ca-page-hero h1 span {
  color: var(--ca-muted);
}

.ca-page-hero__lede {
  margin: 0;
  max-width: 38rem;
  font-size: clamp(1.05rem, 2vw, 1.2rem);
  line-height: 1.6;
  color: var(--ca-muted);
}

.ca-section {
  padding: clamp(56px, 8vw, 96px) clamp(20px, 4vw, 40px);
}

.ca-section--muted {
  background: var(--ca-bg-deep);
  border-top: 1px solid var(--ca-line);
  border-bottom: 1px solid var(--ca-line);
}

.ca-wrap {
  max-width: 1120px;
  margin: 0 auto;
}

.ca-wrap--narrow {
  max-width: 720px;
}

.ca-section h2 {
  margin: 0 0 16px;
  font-family: "Sentient", Georgia, serif;
  font-weight: 300;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  letter-spacing: -0.03em;
  line-height: 1.15;
}

.ca-section .ca-lede {
  margin: 0 0 40px;
  max-width: 40rem;
  color: var(--ca-muted);
  font-size: 1.05rem;
  line-height: 1.6;
}

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

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

@media (max-width: 860px) {
  .ca-grid-3,
  .ca-grid-2 {
    grid-template-columns: 1fr;
  }
}

.ca-stat,
.ca-panel,
.ca-post-card {
  background: var(--ca-card);
  border: 1px solid var(--ca-line);
  border-radius: 18px;
  padding: 28px 26px;
}

.ca-stat strong {
  display: block;
  font-family: "Sentient", Georgia, serif;
  font-weight: 300;
  font-size: clamp(2rem, 4vw, 2.8rem);
  letter-spacing: -0.04em;
  margin-bottom: 10px;
}

.ca-stat p,
.ca-panel p,
.ca-post-card p {
  margin: 0;
  color: var(--ca-muted);
  line-height: 1.55;
  font-size: 0.98rem;
}

.ca-panel p + p {
  margin-top: 12px;
}

.ca-panel h3,
.ca-post-card h3 {
  margin: 0 0 8px;
  font-family: "Sentient", Georgia, serif;
  font-weight: 400;
  font-size: 1.45rem;
  letter-spacing: -0.02em;
}

.ca-panel .ca-role {
  margin: 0 0 14px;
  color: var(--ca-muted);
  font-size: 0.92rem;
  font-weight: 500;
}

.ca-steps {
  display: grid;
  gap: 18px;
}

.ca-step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  align-items: start;
  padding: 22px 0;
  border-top: 1px solid var(--ca-line);
}

.ca-step:last-child {
  border-bottom: 1px solid var(--ca-line);
}

.ca-step__num {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--ca-ink);
  color: #fbfaf6;
  font-weight: 600;
  font-size: 14px;
}

.ca-step h3 {
  margin: 4px 0 8px;
  font-family: "Sentient", Georgia, serif;
  font-weight: 400;
  font-size: 1.35rem;
}

.ca-step p {
  margin: 0;
  color: var(--ca-muted);
  line-height: 1.55;
}

.ca-step__who {
  margin: 0 0 4px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ca-muted);
}

.ca-steps--board {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0 36px;
}

.ca-steps--board .ca-step {
  padding: 24px 0 28px;
  border-bottom: 0;
  align-items: start;
}

.ca-values {
  margin: 12px 0 8px;
}

.ca-values h2 {
  margin: 0 0 28px;
  font-family: "Sentient", Georgia, serif;
  font-weight: 300;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  letter-spacing: -0.03em;
  line-height: 1.15;
}

.ca-values .ca-lede {
  margin: 0 0 28px;
  max-width: 40rem;
  color: var(--ca-muted);
  font-size: 1.05rem;
  line-height: 1.6;
}

@media (max-width: 860px) {
  .ca-steps--board {
    grid-template-columns: 1fr;
  }
}

.ca-post-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-height: 100%;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.ca-post-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(28, 26, 21, 0.08);
}

.ca-post-card__meta {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ca-muted);
}

.ca-post-card__more {
  margin-top: auto;
  padding-top: 8px;
  font-size: 14px;
  font-weight: 600;
}

.ca-article {
  padding: clamp(40px, 6vw, 72px) clamp(20px, 4vw, 40px) 96px;
}

.ca-article__meta {
  margin: 0 0 18px;
  color: var(--ca-muted);
  font-size: 14px;
  font-weight: 500;
}

.ca-article h1 {
  margin: 0 0 20px;
  font-family: "Sentient", Georgia, serif;
  font-weight: 300;
  font-size: clamp(2.1rem, 5vw, 3.4rem);
  letter-spacing: -0.035em;
  line-height: 1.12;
}

.ca-article .ca-lede {
  margin: 0 0 36px;
  font-size: 1.15rem;
  line-height: 1.6;
  color: var(--ca-muted);
}

.ca-prose p {
  margin: 0 0 1.15em;
  font-size: 1.05rem;
  line-height: 1.7;
  color: #2a2823;
}

.ca-prose h3 {
  margin: 1.4em 0 0.5em;
  font-family: "Onest", system-ui, sans-serif;
  font-weight: 600;
  font-size: 1.05rem;
  letter-spacing: -0.01em;
}

.ca-legal-banner {
  margin: 0 0 32px;
  padding: 16px 18px;
  border-radius: 14px;
  border: 1px solid rgba(28, 26, 21, 0.14);
  background: #f4f2ec;
  color: #2a2823;
  font-size: 0.95rem;
  line-height: 1.55;
}

.ca-legal-banner strong {
  display: block;
  margin-bottom: 6px;
  font-size: 0.92rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.ca-prose ul {
  margin: 0 0 1.4em;
  padding-left: 1.2em;
  color: #2a2823;
  line-height: 1.65;
}

.ca-prose li {
  margin-bottom: 0.45em;
}

.ca-update {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 20px;
  padding: 28px 0;
  border-top: 1px solid var(--ca-line);
}

.ca-update:last-child {
  border-bottom: 1px solid var(--ca-line);
}

.ca-update__when {
  font-size: 13px;
  font-weight: 600;
  color: var(--ca-muted);
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.ca-update h3 {
  margin: 0 0 8px;
  font-family: "Sentient", Georgia, serif;
  font-weight: 400;
  font-size: 1.35rem;
}

.ca-update p {
  margin: 0;
  color: var(--ca-muted);
  line-height: 1.55;
}

@media (max-width: 640px) {
  .ca-update {
    grid-template-columns: 1fr;
    gap: 8px;
  }
}

.ca-origin {
  background: var(--ca-bg);
  color: var(--ca-ink);
  padding: 96px 40px;
  font-family: "Onest", "Onest Placeholder", system-ui, sans-serif;
  border-bottom: 1px solid var(--ca-line);
}

.ca-page-hero--plants {
  border-bottom: 0;
  padding: 72px clamp(20px, 4vw, 40px) 56px;
}

.ca-page-hero--plants .ca-page-hero__bg {
  background: url("/assets/values-plants.jpg") center / cover no-repeat;
  opacity: 1;
  transform: none;
  animation: none;
  will-change: auto;
}

.ca-page-hero--plants h1 {
  max-width: 32ch;
}

.ca-page-hero--plants .ca-page-hero__lede {
  max-width: 42rem;
}

.ca-page > .ca-page-hero + .ca-origin {
  padding-top: 40px;
}

.ca-origin__inner {
  max-width: 1120px;
  margin: 0 auto;
}

.ca-origin__eyebrow {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--ca-muted);
  margin: 0 0 16px;
}

.ca-origin__title,
h1.ca-origin__title {
  font-family: "Sentient", "Sentient Placeholder", Georgia, serif;
  font-weight: 300;
  font-size: clamp(2rem, 4vw, 3.25rem);
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin: 0 0 20px;
  max-width: 32ch;
}

.ca-origin__title span {
  color: var(--ca-muted);
}

.ca-origin__lede {
  font-size: 18px;
  line-height: 1.55;
  color: var(--ca-muted);
  max-width: 42rem;
  margin: 0 0 56px;
}

.ca-origin__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 64px;
  padding: 28px 0;
  border-top: 1px solid var(--ca-line);
  border-bottom: 1px solid var(--ca-line);
}

.ca-origin__stat strong {
  display: block;
  font-family: "Sentient", Georgia, serif;
  font-weight: 300;
  font-size: clamp(2rem, 3vw, 2.75rem);
  letter-spacing: -0.03em;
  margin-bottom: 8px;
}

.ca-origin__stat p {
  margin: 0;
  font-size: 14px;
  line-height: 1.45;
  color: var(--ca-muted);
}

.ca-origin__cite {
  margin: 20px 0 0;
  font-size: 12px;
  color: var(--ca-muted);
  line-height: 1.4;
}

.ca-founders {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin-bottom: 28px;
}

.ca-founder {
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  padding: 2px;
  background: #3d3c3d;
  box-shadow: 0 20px 28px rgba(28, 26, 21, 0.22);
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.45s ease;
}

.ca-founder__glow {
  position: absolute;
  z-index: 0;
  width: 70%;
  height: 170%;
  left: -22%;
  top: -35%;
  pointer-events: none;
  background: linear-gradient(120deg, #fbfaf6 0%, #8ea583 42%, #3f5a38 100%);
  filter: blur(50px);
  animation: ca-founder-spin 2.5s linear infinite;
}

.ca-founder__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(240px, 38%);
  align-items: stretch;
  overflow: hidden;
  border-radius: 20px;
  background: linear-gradient(
    90deg,
    #2c3129 0%,
    #3a4036 28%,
    #323132 52%,
    #3d4538 78%,
    #2a3228 100%
  );
}

.ca-founder--flip .ca-founder__inner {
  grid-template-columns: minmax(240px, 38%) minmax(0, 1fr);
}

.ca-founder--flip .ca-founder__copy {
  order: 2;
}

.ca-founder--flip .ca-founder__scene {
  order: 1;
}

.ca-founder:hover {
  transform: translateY(-4px);
  box-shadow: 0 26px 36px rgba(28, 26, 21, 0.3);
}

.ca-founder:hover .ca-founder__glow {
  animation-duration: 1.6s;
}

@keyframes ca-founder-spin {
  to {
    transform: rotate(360deg);
  }
}

.ca-founder__copy {
  display: flex;
  flex-direction: column;
  min-width: 0;
  padding: 8px 8px 22px;
}

.ca-founder__intro {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 18px 18px 8px;
}

.ca-founder__photo {
  position: relative;
  width: 88px;
  height: 108px;
  flex-shrink: 0;
  overflow: hidden;
  border-radius: 14px;
  background: #eceae4;
}

.ca-founder__photo::after {
  display: none;
}

.ca-founder__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 18%;
  display: block;
}

.ca-founder:hover .ca-founder__photo img {
  transform: none;
}

.ca-founder__who {
  min-width: 0;
}

.ca-founder__badge {
  display: inline-flex;
  position: static;
  margin: 0 0 6px;
  padding: 5px 9px;
  border-radius: 999px;
  background: rgba(251, 250, 246, 0.12);
  color: #fbfaf6;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ca-founder h3 {
  margin: 0;
  font-family: "Sentient", Georgia, serif;
  font-weight: 400;
  font-size: 1.55rem;
  letter-spacing: -0.03em;
  color: #fbfaf6;
}

.ca-founder__story p {
  margin: 0 18px 12px;
  font-size: 15px;
  line-height: 1.55;
  color: rgba(251, 250, 246, 0.82);
}

.ca-founder__story p:last-child {
  margin-bottom: 0;
}

.ca-founder__scene {
  position: relative;
  margin: 0;
  padding: 0;
  min-height: 320px;
  background: #2a3228;
  overflow: hidden;
}

.ca-founder__painting {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 28%;
  background: #2a3228;
}

.ca-founder__caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  margin: 0;
  padding: 28px 16px 14px;
  background: linear-gradient(transparent, rgba(28, 26, 21, 0.55));
  font-size: 11px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #fbfaf6;
}

.ca-art__sun {
  transform-origin: 72px 36px;
  animation: ca-sun-glow 4.8s ease-in-out infinite;
}

.ca-art__steam,
.ca-art__steam--d {
  transform-box: fill-box;
  transform-origin: bottom center;
  animation: ca-steam 3.2s ease-in-out infinite;
}

.ca-art__steam--d {
  animation-delay: 0.7s;
}

.ca-art__bond {
  animation: ca-dash 8s linear infinite;
}

.ca-art__speech {
  transform-origin: 180px 40px;
  animation: ca-speech 4.4s ease-in-out infinite;
}

.ca-art__caption-es {
  animation: ca-fade-soft 4.4s ease-in-out infinite;
}

.ca-art__glow {
  animation: ca-glow-line 2.4s ease-in-out infinite;
}

.ca-art__call {
  transform-box: fill-box;
  transform-origin: left center;
  animation: ca-call 2.2s ease-out infinite;
}

.ca-art__call--2 {
  animation-delay: 0.35s;
}

.ca-art__ping-core,
.ca-art__ping-ring,
.ca-motif__ring,
.ca-motif__ping {
  transform-box: fill-box;
  transform-origin: center;
}

.ca-art__ping-core {
  animation: ca-ping-core 2s ease-in-out infinite;
}

.ca-art__ping-ring {
  animation: ca-ping-ring 2.2s ease-out infinite;
}

.ca-art__ping-ring--2 {
  animation-delay: 0.7s;
}

.ca-art__pulse {
  animation: ca-dash 3.6s linear infinite;
}

.ca-art__notes {
  transform-box: fill-box;
  transform-origin: bottom left;
  animation: ca-notes-away 5.5s ease-in-out infinite;
}

.ca-art__notes--2 {
  animation-delay: 0.9s;
}

.ca-art__hands {
  transform-box: fill-box;
  transform-origin: center;
  animation: ca-clock 8s linear infinite;
}

.ca-motif__dot {
  animation: ca-dot-talk 1.6s ease-in-out infinite;
}

.ca-motif__dot:nth-child(3) {
  animation-delay: 0.18s;
}

.ca-motif__dot:nth-child(4) {
  animation-delay: 0.36s;
}

.ca-motif__bubble--2 {
  animation: ca-bubble-soft 3.4s ease-in-out infinite;
}

.ca-motif__ring {
  animation: ca-motif-ring 2.4s ease-out infinite;
}

.ca-motif__ring--2 {
  animation-delay: 0.8s;
}

.ca-motif__ping {
  animation: ca-ping-core 2s ease-in-out infinite;
}

@keyframes ca-sun-glow {
  0%, 100% { opacity: 0.28; }
  50% { opacity: 0.55; }
}

@keyframes ca-steam {
  0%, 100% { opacity: 0.18; transform: translateY(0) scaleY(1); }
  50% { opacity: 0.62; transform: translateY(-7px) scaleY(1.08); }
}

@keyframes ca-dash {
  to { stroke-dashoffset: -80; }
}

@keyframes ca-speech {
  0%, 100% { opacity: 0.35; transform: translateY(3px); }
  30%, 70% { opacity: 1; transform: translateY(0); }
}

@keyframes ca-fade-soft {
  0%, 100% { opacity: 0.2; }
  50% { opacity: 0.7; }
}

@keyframes ca-glow-line {
  0%, 100% { opacity: 0.35; }
  50% { opacity: 1; }
}

@keyframes ca-call {
  0% { opacity: 0.7; transform: scale(0.86); }
  100% { opacity: 0; transform: scale(1.18); }
}

@keyframes ca-ping-core {
  0%, 100% { transform: scale(1); opacity: 0.9; }
  50% { transform: scale(1.18); opacity: 1; }
}

@keyframes ca-ping-ring {
  0% { transform: scale(0.55); opacity: 0.7; }
  100% { transform: scale(1.35); opacity: 0; }
}

@keyframes ca-notes-away {
  0%, 100% { opacity: 0.4; transform: translate(0, 0) rotate(0deg); }
  50% { opacity: 0.08; transform: translate(10px, -14px) rotate(8deg); }
}

@keyframes ca-clock {
  to { transform: rotate(360deg); }
}

@keyframes ca-dot-talk {
  0%, 80%, 100% { opacity: 0.35; transform: translateY(0); }
  40% { opacity: 1; transform: translateY(-1.5px); }
}

@keyframes ca-bubble-soft {
  0%, 100% { opacity: 0.55; }
  50% { opacity: 1; }
}

@keyframes ca-motif-ring {
  0% { transform: scale(0.72); opacity: 0.55; }
  100% { transform: scale(1.2); opacity: 0; }
}

.ca-promise {
  position: relative;
  overflow: hidden;
  padding: 44px 56px 40px;
  border-radius: 22px;
  background-color: #fbfaf6;
  background-image: url("/assets/values-plants.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  color: var(--ca-ink);
  border: 1px solid var(--ca-line);
  box-shadow: none;
}

.ca-promise::before {
  display: none;
}

.ca-promise__eyebrow {
  margin: 0 0 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ca-muted);
  position: relative;
  z-index: 1;
}

.ca-promise h3 {
  margin: 0 0 10px;
  font-family: "Sentient", Georgia, serif;
  font-weight: 300;
  font-size: clamp(2.1rem, 4vw, 3rem);
  letter-spacing: -0.03em;
  color: var(--ca-ink);
  position: relative;
  z-index: 1;
}

.ca-promise__tagline {
  margin: 0 0 14px;
  max-width: 36rem;
  font-family: "Sentient", Georgia, serif;
  font-weight: 400;
  font-size: 1.15rem;
  line-height: 1.4;
  letter-spacing: -0.02em;
  color: var(--ca-ink);
  position: relative;
  z-index: 1;
}

.ca-promise__lede {
  margin: 0 0 28px;
  max-width: 42rem;
  font-size: 16px;
  line-height: 1.55;
  color: var(--ca-muted);
  position: relative;
  z-index: 1;
}

.ca-promise__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  position: relative;
  z-index: 1;
}

.ca-promise__item {
  padding: 18px 18px 20px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid var(--ca-line);
  backdrop-filter: blur(6px);
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), background 0.35s ease;
}

.ca-promise__item:hover {
  transform: translateY(-4px);
  background: #fff;
}

.ca-promise__icon {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  margin-bottom: 12px;
  border-radius: 10px;
  background: var(--ca-soft);
  color: var(--ca-ink);
}

.ca-promise__icon svg {
  width: 18px;
  height: 18px;
}

.ca-promise__item h4 {
  margin: 0 0 8px;
  font-size: 15px;
  font-weight: 600;
  color: var(--ca-ink);
}

.ca-promise__item p {
  margin: 0;
  font-size: 14px;
  line-height: 1.45;
  color: var(--ca-muted);
}

.ca-vision__kicker {
  margin: 0 0 14px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ca-muted);
  position: relative;
  z-index: 1;
}

.ca-vision__num {
  display: block;
  margin: 0 0 4px;
  font-family: "Sentient", Georgia, serif;
  font-weight: 300;
  font-size: clamp(2rem, 3.2vw, 2.55rem);
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--ca-ink);
}

.ca-vision__from {
  display: block;
  margin: 0 0 12px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ca-muted);
}

@media (max-width: 900px) {
  .ca-origin {
    padding: 72px 24px;
  }
  .ca-promise {
    padding: 32px 22px 28px;
    background-position: center bottom;
  }
  .ca-origin__stats,
  .ca-promise__grid {
    grid-template-columns: 1fr;
  }
  .ca-founder,
  .ca-founder--flip {
    grid-template-columns: 1fr;
  }
  .ca-founder__inner,
  .ca-founder--flip .ca-founder__inner {
    grid-template-columns: 1fr;
  }
  .ca-founder__copy,
  .ca-founder--flip .ca-founder__copy {
    order: 1;
  }
  .ca-founder__scene,
  .ca-founder--flip .ca-founder__scene {
    order: 2;
    min-height: 280px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .ca-founder,
  .ca-founder__photo img {
    transition: none;
  }
  .ca-founder:hover {
    transform: none;
  }
  .ca-founder__glow,
  .ca-founder:hover .ca-founder__glow {
    animation: none;
  }
  .ca-art__sun,
  .ca-art__steam,
  .ca-art__steam--d,
  .ca-art__bond,
  .ca-art__speech,
  .ca-art__caption-es,
  .ca-art__glow,
  .ca-art__call,
  .ca-art__call--2,
  .ca-art__ping-core,
  .ca-art__ping-ring,
  .ca-art__ping-ring--2,
  .ca-art__pulse,
  .ca-art__notes,
  .ca-art__notes--2,
  .ca-art__hands,
  .ca-motif__dot,
  .ca-motif__bubble--2,
  .ca-motif__ring,
  .ca-motif__ring--2,
  .ca-motif__ping {
    animation: none !important;
  }
}

.ca-cta-band {
  margin: 0 clamp(20px, 4vw, 40px) 72px;
  padding: clamp(36px, 6vw, 56px);
  border-radius: 24px;
  background:
    linear-gradient(135deg, rgba(28, 26, 21, 0.92), rgba(28, 26, 21, 0.82)),
    url("/assets/ca-hero-bg.jpg") center / cover;
  color: #fbfaf6;
  text-align: center;
}

.ca-cta-band h2 {
  margin: 0 0 12px;
  font-family: "Sentient", Georgia, serif;
  font-weight: 300;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  letter-spacing: -0.03em;
}

.ca-cta-band p {
  margin: 0 auto 24px;
  max-width: 34rem;
  color: rgba(251, 250, 246, 0.72);
  line-height: 1.55;
}

.ca-cta-band a {
  display: inline-flex;
  padding: 12px 18px;
  border-radius: 12px;
  background: #fbfaf6;
  color: #1c1a15;
  font-weight: 600;
  font-size: 14px;
}

.ca-page-footer {
  padding: 28px clamp(20px, 4vw, 40px) 40px;
  border-top: 1px solid var(--ca-line);
  color: var(--ca-muted);
  font-size: 13px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.ca-page-footer a + a {
  margin-left: 14px;
}

.ca-reveal {
  /* Visible by default so pages never flash blank while CSS/JS load */
  opacity: 1;
  transform: none;
  transition: opacity 0.7s ease, transform 0.7s ease;
}

@media (prefers-reduced-motion: no-preference) {
  html.ca-motion .ca-reveal:not(.is-in) {
    opacity: 0;
    transform: translateY(22px);
  }
}

.ca-reveal.is-in {
  opacity: 1;
  transform: none;
}

/* Always paint hero immediately */
.ca-page-hero .ca-reveal {
  opacity: 1 !important;
  transform: none !important;
}

.ca-reveal-delay-1 {
  transition-delay: 0.08s;
}
.ca-reveal-delay-2 {
  transition-delay: 0.16s;
}
.ca-reveal-delay-3 {
  transition-delay: 0.24s;
}

/* ——— Features page ——— */
.ca-feat-toc {
  position: sticky;
  top: 69px;
  z-index: 30;
  background: rgba(251, 250, 246, 0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--ca-line);
  padding: 12px clamp(20px, 4vw, 40px);
}

.ca-feat-toc__inner {
  max-width: 1120px;
  margin: 0 auto;
  display: flex;
  gap: 8px;
  overflow-x: auto;
  scrollbar-width: none;
}

.ca-feat-toc__inner::-webkit-scrollbar {
  display: none;
}

.ca-feat-toc a {
  flex: 0 0 auto;
  padding: 10px 16px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  color: var(--ca-muted);
  transition: background 0.25s ease, color 0.25s ease;
}

.ca-feat-toc a:hover,
.ca-feat-toc a.is-active {
  background: #fff;
  color: var(--ca-ink);
  box-shadow: 0 1px 0 rgba(28, 26, 21, 0.06), 0 8px 24px rgba(28, 26, 21, 0.06);
}

.ca-feat-stage {
  scroll-margin-top: 140px;
  padding: clamp(56px, 8vw, 100px) clamp(20px, 4vw, 40px);
  border-bottom: 1px solid var(--ca-line);
}

.ca-feat-stage:nth-child(even) {
  background: var(--ca-bg-deep);
}

.ca-bento {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 14px;
  align-items: stretch;
}

.ca-bento__cell {
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  padding: 24px 22px 22px;
  border-radius: 22px;
  background: #fff;
  border: 1px solid var(--ca-line);
  box-shadow: 0 12px 40px rgba(28, 26, 21, 0.04);
  transition:
    transform 0.5s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.5s ease;
}

@media (prefers-reduced-motion: no-preference) {
  .ca-bento__cell:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 48px rgba(28, 26, 21, 0.08);
  }
}

.ca-bento > .ca-reveal:nth-child(1) { transition-delay: 0.02s; }
.ca-bento > .ca-reveal:nth-child(2) { transition-delay: 0.08s; }
.ca-bento > .ca-reveal:nth-child(3) { transition-delay: 0.14s; }
.ca-bento > .ca-reveal:nth-child(4) { transition-delay: 0.2s; }
.ca-bento > .ca-reveal:nth-child(5) { transition-delay: 0.26s; }
.ca-bento > .ca-reveal:nth-child(6) { transition-delay: 0.32s; }
.ca-bento > .ca-reveal:nth-child(7) { transition-delay: 0.38s; }
.ca-bento > .ca-reveal:nth-child(8) { transition-delay: 0.44s; }

.ca-bento__num {
  margin: 0 0 10px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--ca-muted);
}

.ca-bento__cell h3 {
  margin: 0 0 10px;
  font-family: "Sentient", Georgia, serif;
  font-weight: 400;
  font-size: 1.2rem;
  letter-spacing: -0.02em;
  line-height: 1.25;
}

.ca-bento__cell p {
  margin: 0 0 12px;
  color: var(--ca-muted);
  font-size: 0.95rem;
  line-height: 1.55;
}

.ca-bento__cell p:last-child {
  margin-bottom: 0;
}

.ca-bento__cell ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 8px;
}

.ca-bento__cell li {
  position: relative;
  padding-left: 14px;
  font-size: 0.9rem;
  line-height: 1.45;
  color: #2a2823;
}

.ca-bento__cell li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(28, 26, 21, 0.28);
}

.ca-bento__ink {
  background: var(--ca-ink);
  color: #fbfaf6;
  border-color: transparent;
  box-shadow: 0 16px 44px rgba(28, 26, 21, 0.18);
}

.ca-bento__ink h3 {
  color: #fbfaf6;
}

.ca-bento__ink p,
.ca-bento__ink li {
  color: rgba(251, 250, 246, 0.82);
}

.ca-bento__ink li::before {
  background: rgba(251, 250, 246, 0.45);
}

.ca-bento__shot {
  padding: 0;
  min-height: 320px;
  overflow: hidden;
  background: #e8e4da;
}

.ca-bento__shot:hover {
  transform: none;
}

.ca-bento--companion .ca-bento__title {
  grid-column: 1 / 4;
}

.ca-bento--companion .ca-bento__shot {
  grid-column: 4 / 7;
  min-height: 360px;
}

.ca-bento--companion .ca-bento__daily {
  grid-column: 1 / 3;
}

.ca-bento--companion .ca-bento__cog {
  grid-column: 3 / 5;
}

.ca-bento--companion .ca-bento__access {
  grid-column: 5 / 7;
}

.ca-bento--family .ca-bento__shot {
  grid-column: 1 / 4;
  grid-row: 1 / 3;
  min-height: 100%;
}

.ca-bento--family .ca-bento__title {
  grid-column: 4 / 7;
}

.ca-bento--family .ca-bento__play {
  grid-column: 4 / 7;
}

.ca-bento--family .ca-bento__ink {
  grid-column: 1 / -1;
}

.ca-bento--family > article.ca-bento__chip:nth-child(5),
.ca-bento--family > article.ca-bento__chip:nth-child(6),
.ca-bento--family > article.ca-bento__chip:nth-child(7) {
  grid-column: span 2;
}

.ca-bento--dash .ca-bento__title {
  grid-column: 1 / 3;
}

.ca-bento--dash .ca-bento__shot {
  grid-column: 3 / 7;
  grid-row: 1 / 3;
  min-height: 380px;
}

.ca-bento--dash .ca-bento__ink {
  grid-column: 1 / 3;
}

.ca-bento--dash .ca-bento__chip {
  grid-column: span 2;
}

.ca-bento--dash .ca-bento__wide {
  grid-column: 1 / -1;
}

@media (max-width: 900px) {
  .ca-bento {
    grid-template-columns: 1fr;
  }
  .ca-bento--companion .ca-bento__title,
  .ca-bento--companion .ca-bento__shot,
  .ca-bento--companion .ca-bento__daily,
  .ca-bento--companion .ca-bento__cog,
  .ca-bento--companion .ca-bento__access,
  .ca-bento--family .ca-bento__shot,
  .ca-bento--family .ca-bento__title,
  .ca-bento--family .ca-bento__play,
  .ca-bento--family .ca-bento__ink,
  .ca-bento--family > article.ca-bento__chip:nth-child(5),
  .ca-bento--family > article.ca-bento__chip:nth-child(6),
  .ca-bento--family > article.ca-bento__chip:nth-child(7),
  .ca-bento--dash .ca-bento__title,
  .ca-bento--dash .ca-bento__shot,
  .ca-bento--dash .ca-bento__ink,
  .ca-bento--dash .ca-bento__chip,
  .ca-bento--dash .ca-bento__wide {
    grid-column: 1 / -1;
    grid-row: auto;
  }
  .ca-bento__shot {
    min-height: 240px;
  }
  .ca-bento--family .ca-bento__title { order: 0; }
  .ca-bento--family .ca-bento__shot { order: 1; }
  .ca-bento--family .ca-bento__play { order: 2; }
  .ca-bento--family .ca-bento__ink { order: 3; }
  .ca-bento--family .ca-bento__chip { order: 4; }
}

.ca-feat-kicker {
  margin: 0 0 12px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ca-muted);
}

.ca-feat-stage h2 {
  margin: 0 0 14px;
  max-width: 12ch;
}

.ca-bento h2 {
  max-width: none;
}

.ca-feat-stage .ca-lede {
  margin: 0 0 28px;
  max-width: 40rem;
  color: var(--ca-muted);
  font-size: 1.05rem;
  line-height: 1.65;
}

.ca-feat-stage .ca-lede-stack {
  display: grid;
  gap: 16px;
  margin: 0 0 32px;
  max-width: 40rem;
}

.ca-feat-stage .ca-lede-stack .ca-lede {
  margin: 0;
}

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

.ca-feat-list li {
  position: relative;
  padding: 12px 14px 12px 44px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--ca-line);
  font-size: 0.95rem;
  line-height: 1.45;
  color: #2a2823;
}

.ca-feat-list li::before {
  content: "";
  position: absolute;
  left: 14px;
  top: 14px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(28, 26, 21, 0.08);
  box-shadow: inset 0 0 0 1px rgba(28, 26, 21, 0.12);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none'%3E%3Cpath d='M4 8.2l2.4 2.4L12 5' stroke='%231c1a15' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 12px;
}

.ca-feat-visual {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  min-height: 420px;
  background: #e8e4da;
  box-shadow: 0 30px 70px rgba(28, 26, 21, 0.12);
}

.ca-feat-visual__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.06);
  animation: ca-hero-drift 20s ease-in-out infinite alternate;
}

.ca-feat-visual__shot {
  position: absolute;
  inset: 12% 8% auto;
  width: 84%;
  border-radius: 16px;
  box-shadow: 0 24px 50px rgba(14, 19, 29, 0.28);
}

.ca-feat-visual__shot--low {
  inset: auto 8% 10%;
}

.ca-bento .ca-feat-visual {
  min-height: 280px;
  height: 100%;
  border-radius: 22px;
  box-shadow: none;
}

.ca-feat-aims {
  display: none;
}

.ca-goals {
  position: relative;
  overflow: visible;
  padding: clamp(64px, 9vw, 112px) clamp(20px, 4vw, 40px);
  background:
    linear-gradient(180deg, #e9e8e4 0%, #e2e1dc 48%, #deddd8 100%);
  border-top: 1px solid rgba(28, 26, 21, 0.1);
  border-bottom: 1px solid rgba(28, 26, 21, 0.1);
  scroll-margin-top: 140px;
}

.ca-goals__header {
  max-width: 720px;
  margin-bottom: 48px;
}

.ca-goals__header h2 {
  margin: 0 0 16px;
  font-family: "Sentient", Georgia, serif;
  font-weight: 300;
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: -0.03em;
  line-height: 1.12;
}

.ca-goals__header h2 span {
  color: var(--ca-muted);
}

.ca-goals__rows {
  display: grid;
  gap: 18px;
  position: relative;
  z-index: 1;
}

.ca-goal {
  position: relative;
  overflow: hidden;
  padding: 26px 88px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(28, 26, 21, 0.1);
  backdrop-filter: blur(8px);
  box-shadow: 0 12px 40px rgba(28, 26, 21, 0.05);
}

.ca-goal > :not(.ca-goal__flora) {
  position: relative;
  z-index: 1;
}

.ca-goal__flora {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.ca-goal__flora::before,
.ca-goal__flora::after {
  content: "";
  position: absolute;
  top: -12%;
  bottom: -12%;
  width: 118px;
  background-image: url("/assets/ca-hero-bg.jpg");
  background-size: 420px auto;
  background-repeat: no-repeat;
  opacity: 0.4;
  filter: saturate(0.9) contrast(1.05);
}

.ca-goal__flora::before {
  left: -28px;
  background-position: 12% 30%;
  -webkit-mask-image: linear-gradient(90deg, #000 18%, transparent 88%);
  mask-image: linear-gradient(90deg, #000 18%, transparent 88%);
}

.ca-goal__flora::after {
  right: -28px;
  background-position: 78% 55%;
  transform: scaleX(-1);
  -webkit-mask-image: linear-gradient(90deg, #000 18%, transparent 88%);
  mask-image: linear-gradient(90deg, #000 18%, transparent 88%);
}

.ca-goal:nth-child(2) .ca-goal__flora::before {
  background-position: 28% 70%;
}

.ca-goal:nth-child(2) .ca-goal__flora::after {
  background-position: 62% 18%;
}

.ca-goal:nth-child(3) .ca-goal__flora::before {
  background-position: 8% 8%;
}

.ca-goal:nth-child(3) .ca-goal__flora::after {
  background-position: 88% 82%;
}

.ca-goal:nth-child(4) .ca-goal__flora::before {
  background-position: 42% 48%;
}

.ca-goal:nth-child(4) .ca-goal__flora::after {
  background-position: 18% 90%;
}

.ca-goal__label {
  margin: 0 0 18px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ca-ink);
}

.ca-goal__flow {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 16px;
  align-items: center;
}

@media (max-width: 720px) {
  .ca-goal {
    padding: 22px 22px 22px 56px;
  }
  .ca-goal__flora::before,
  .ca-goal__flora::after {
    width: 72px;
    opacity: 0.28;
  }
  .ca-goal__flora::after {
    display: none;
  }
  .ca-goal__flow {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .ca-goal__arrow {
    transform: rotate(90deg);
    justify-self: center;
  }
}

.ca-goal__side strong {
  display: block;
  font-family: "Sentient", Georgia, serif;
  font-weight: 300;
  font-size: clamp(1.7rem, 3vw, 2.2rem);
  letter-spacing: -0.03em;
  margin-bottom: 6px;
}

.ca-goal__side span {
  display: block;
  font-size: 0.92rem;
  line-height: 1.45;
  color: var(--ca-muted);
}

.ca-goal__side--before {
  opacity: 0.78;
}

.ca-goal__side--before strong {
  text-decoration: line-through;
  text-decoration-thickness: 1px;
  text-decoration-color: rgba(28, 26, 21, 0.35);
}

.ca-goal__side--after strong {
  color: #3f5a38;
}

.ca-goal__arrow {
  width: 64px;
  color: var(--ca-ink);
  animation: ca-arrow-pulse 1.8s ease-in-out infinite;
}

.ca-goal__arrow svg {
  width: 64px;
  height: 24px;
  display: block;
}

@keyframes ca-arrow-pulse {
  0%,
  100% {
    transform: translateX(0);
    opacity: 0.55;
  }
  50% {
    transform: translateX(6px);
    opacity: 1;
  }
}

@media (prefers-reduced-motion: reduce) {
  .ca-goal__arrow {
    animation: none;
  }
}

.ca-ba {
  margin-top: 48px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.ca-ba__stage {
  position: relative;
  overflow: visible;
}

.ca-ba__card {
  position: relative;
  overflow: visible;
  border-radius: 20px;
  padding: 28px 26px 30px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(28, 26, 21, 0.1);
  box-shadow: 0 12px 40px rgba(28, 26, 21, 0.05);
  backdrop-filter: blur(8px);
}

.ca-ba__card--before {
  background: #eceae4;
  box-shadow:
    0 12px 40px rgba(28, 26, 21, 0.05),
    inset 0 0 48px rgba(28, 26, 21, 0.04);
  transform-origin: 50% 100%;
}

.ca-ba.is-crushing .ca-ba__card--before {
  animation: ca-ba-crush 0.5s cubic-bezier(0.55, 0.06, 0.85, 0.18) 0.36s both;
}

.ca-ba.is-crushing .ca-ba__card--after {
  animation: ca-ba-drop 0.78s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  pointer-events: auto;
}

@keyframes ca-ba-crush {
  0% {
    transform: none;
    opacity: 1;
    filter: none;
  }
  55% {
    transform: scaleY(0.55) scaleX(1.04);
    opacity: 1;
  }
  100% {
    transform: scaleY(0.06) scaleX(1.08);
    opacity: 0;
    filter: blur(2px);
  }
}

.ca-ba__card--after {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 2;
  background: #fffdf8;
  padding: 28px 42px 32px;
  overflow: hidden;
  transform: translate3d(0, -118%, 0) rotate(-4deg);
  opacity: 0;
  pointer-events: none;
  box-shadow: 0 18px 48px rgba(28, 26, 21, 0.1);
}

.ca-ba__art {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: visible;
  color: var(--ca-ink);
}

.ca-ba__card > :not(.ca-ba__art) {
  position: relative;
  z-index: 1;
}

.ca-ba-fly {
  position: absolute;
  width: 28px;
  height: 28px;
  opacity: 0.38;
}

.ca-ba-fly--1 {
  top: 18px;
  right: 22%;
  animation: ca-fly-buzz-a 2.6s ease-in-out infinite;
}

.ca-ba-fly--2 {
  top: 42%;
  right: 10px;
  width: 22px;
  height: 22px;
  animation: ca-fly-buzz-b 3.2s ease-in-out infinite;
}

.ca-ba-fly--3 {
  bottom: 22%;
  left: 8%;
  width: 24px;
  height: 24px;
  animation: ca-fly-buzz-a 2.9s ease-in-out infinite reverse;
}

.ca-ba-fly--4 {
  top: 28%;
  left: 14%;
  width: 18px;
  height: 18px;
  opacity: 0.28;
  animation: ca-fly-buzz-b 3.7s ease-in-out infinite reverse;
}

.ca-ba-fly__wing {
  transform-box: fill-box;
  transform-origin: center;
  opacity: 0.55;
}

.ca-ba-fly__wing--l {
  animation: ca-fly-wing 0.08s ease-in-out infinite alternate;
}

.ca-ba-fly__wing--r {
  animation: ca-fly-wing 0.08s ease-in-out infinite alternate-reverse;
}

@keyframes ca-fly-wing {
  from {
    transform: scaleY(1) rotate(-8deg);
  }
  to {
    transform: scaleY(0.22) rotate(16deg);
  }
}

@keyframes ca-fly-buzz-a {
  0%,
  100% {
    transform: translate(0, 0) rotate(-10deg);
  }
  20% {
    transform: translate(16px, -14px) rotate(12deg);
  }
  45% {
    transform: translate(-12px, -24px) rotate(-6deg);
  }
  70% {
    transform: translate(18px, 8px) rotate(14deg);
  }
}

@keyframes ca-fly-buzz-b {
  0%,
  100% {
    transform: translate(0, 0) rotate(8deg);
  }
  25% {
    transform: translate(-18px, -10px) rotate(-14deg);
  }
  55% {
    transform: translate(10px, -20px) rotate(6deg);
  }
  80% {
    transform: translate(-8px, 12px) rotate(-10deg);
  }
}

.ca-ba-sad {
  position: absolute;
  width: 52px;
  height: 56px;
  opacity: 0.34;
}

.ca-ba-sad--1 {
  top: 12px;
  right: 14px;
  animation: ca-sad-bob 4.2s ease-in-out infinite;
}

.ca-ba-sad--2 {
  bottom: 18px;
  left: 16px;
  width: 44px;
  height: 48px;
  opacity: 0.26;
  animation: ca-sad-bob 5s ease-in-out infinite reverse;
}

.ca-ba-tear {
  opacity: 0;
  animation: ca-tear 2.8s ease-in infinite;
}

@keyframes ca-sad-bob {
  0%,
  100% {
    transform: translateY(0) rotate(-6deg);
  }
  50% {
    transform: translateY(6px) rotate(4deg);
  }
}

@keyframes ca-tear {
  0%,
  35% {
    opacity: 0;
    transform: translateY(0);
  }
  50% {
    opacity: 0.8;
  }
  100% {
    opacity: 0;
    transform: translateY(8px);
  }
}

.ca-ba-wilt {
  position: absolute;
  right: 18px;
  bottom: 10px;
  width: 36px;
  height: 58px;
  opacity: 0.28;
  transform-origin: 50% 100%;
  animation: ca-wilt 3.4s ease-in-out infinite;
}

@keyframes ca-wilt {
  0%,
  100% {
    transform: rotate(8deg);
  }
  50% {
    transform: rotate(16deg);
  }
}

.ca-ba-smile {
  position: absolute;
  top: 14px;
  right: 16px;
  width: 40px;
  height: 40px;
  opacity: 0;
  color: var(--ca-ink);
}

.ca-ba.is-after .ca-ba-smile {
  animation: ca-hug-in 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.38s forwards;
}

@keyframes ca-hug-in {
  from {
    opacity: 0;
    transform: translateY(8px) scale(0.86);
  }
  to {
    opacity: 0.55;
    transform: none;
  }
}

.ca-ba-bloom {
  position: absolute;
  width: 36px;
  height: 36px;
  opacity: 0;
  color: var(--ca-ink);
}

.ca-ba-bloom svg {
  display: block;
  width: 100%;
  height: 100%;
}

.ca-ba-bloom--left-1 {
  left: -10px;
  top: 24%;
}

.ca-ba-bloom--left-1 svg {
  transform: rotate(-90deg);
}

.ca-ba-bloom--left-2 {
  left: -8px;
  top: 54%;
  width: 30px;
  height: 30px;
}

.ca-ba-bloom--left-2 svg {
  transform: rotate(-78deg);
}

.ca-ba-bloom--left-curl {
  left: 6px;
  bottom: -10px;
  width: 34px;
  height: 34px;
}

.ca-ba-bloom--left-curl svg {
  transform: rotate(-135deg);
  transform-origin: 50% 80%;
}

.ca-ba-bloom--right-1 {
  right: 8px;
  top: 36%;
}

.ca-ba-bloom--right-2 {
  right: 12px;
  bottom: 12%;
  width: 30px;
  height: 30px;
}

.ca-ba.is-after .ca-ba-bloom--left-1 {
  animation: ca-bloom 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.5s forwards;
}

.ca-ba.is-after .ca-ba-bloom--left-2 {
  animation: ca-bloom 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.62s forwards;
}

.ca-ba.is-after .ca-ba-bloom--left-curl {
  animation: ca-bloom 0.85s cubic-bezier(0.22, 1, 0.36, 1) 0.74s forwards;
}

.ca-ba.is-after .ca-ba-bloom--right-1 {
  animation: ca-bloom 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.58s forwards;
}

.ca-ba.is-after .ca-ba-bloom--right-2 {
  animation: ca-bloom 0.85s cubic-bezier(0.22, 1, 0.36, 1) 0.7s forwards;
}

@keyframes ca-bloom {
  0% {
    opacity: 0;
    transform: translateY(10px) scale(0.2);
  }
  72% {
    opacity: 0.62;
  }
  100% {
    opacity: 0.5;
    transform: translateY(0) scale(1);
  }
}

.ca-ba-bird {
  position: absolute;
  width: 34px;
  height: 22px;
  opacity: 0;
}

.ca-ba-bird--1 {
  top: 22px;
  left: 18%;
  --tx: -70px;
  --ty: -88px;
  --rot: -18deg;
}

.ca-ba-bird--2 {
  top: 8px;
  right: 28%;
  width: 28px;
  --tx: 110px;
  --ty: -72px;
  --rot: 22deg;
}

.ca-ba-bird--3 {
  top: 36%;
  right: 12px;
  width: 24px;
  --tx: 96px;
  --ty: -40px;
  --rot: 12deg;
}

.ca-ba.is-after .ca-ba-bird--1 {
  animation: ca-bird-off 1.45s cubic-bezier(0.22, 1, 0.36, 1) 0.52s forwards;
}

.ca-ba.is-after .ca-ba-bird--2 {
  animation: ca-bird-off 1.35s cubic-bezier(0.22, 1, 0.36, 1) 0.64s forwards;
}

.ca-ba.is-after .ca-ba-bird--3 {
  animation: ca-bird-off 1.5s cubic-bezier(0.22, 1, 0.36, 1) 0.7s forwards;
}

@keyframes ca-bird-off {
  0% {
    opacity: 0.55;
    transform: translate(0, 0) rotate(0deg) scale(1);
  }
  18% {
    opacity: 0.55;
  }
  100% {
    opacity: 0;
    transform: translate(var(--tx), var(--ty)) rotate(var(--rot)) scale(0.72);
  }
}

.ca-ba-petal {
  position: absolute;
  width: 10px;
  height: 14px;
  border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
  background: rgba(28, 26, 21, 0.16);
  opacity: 0;
}

.ca-ba-petal--1 {
  left: 22%;
  bottom: 18%;
}

.ca-ba-petal--2 {
  left: 48%;
  bottom: 12%;
}

.ca-ba-petal--3 {
  right: 24%;
  bottom: 22%;
}

.ca-ba-petal--4 {
  right: 38%;
  bottom: 8%;
}

.ca-ba.is-after .ca-ba-petal--1 {
  animation: ca-petal-rise 2.4s ease-out 0.7s infinite;
}

.ca-ba.is-after .ca-ba-petal--2 {
  animation: ca-petal-rise 2.8s ease-out 1s infinite;
}

.ca-ba.is-after .ca-ba-petal--3 {
  animation: ca-petal-rise 2.5s ease-out 0.85s infinite;
}

.ca-ba.is-after .ca-ba-petal--4 {
  animation: ca-petal-rise 3s ease-out 1.15s infinite;
}

@keyframes ca-petal-rise {
  0% {
    opacity: 0;
    transform: translate(0, 12px) rotate(0deg) scale(0.6);
  }
  18% {
    opacity: 0.7;
  }
  100% {
    opacity: 0;
    transform: translate(18px, -130px) rotate(150deg) scale(1);
  }
}

.ca-ba.is-after .ca-ba__card--after {
  animation: none;
  opacity: 1;
  transform: none;
  pointer-events: auto;
  position: relative;
}

.ca-ba.is-after .ca-ba__card--before {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
}

.ca-ba.is-reset .ca-ba__card--after {
  animation: ca-ba-lift 0.5s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  position: absolute;
}

.ca-ba.is-reset .ca-ba__card--before {
  position: relative;
  transform: none;
  opacity: 1;
  filter: none;
}

@keyframes ca-ba-drop {
  0% {
    opacity: 0;
    transform: translate3d(0, -118%, 0) rotate(-4deg);
  }
  72% {
    opacity: 1;
    transform: translate3d(0, 6px, 0) rotate(0.4deg);
  }
  86% {
    transform: translate3d(0, -5px, 0) rotate(-0.2deg);
  }
  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0) rotate(0deg);
  }
}

@keyframes ca-ba-lift {
  0% {
    opacity: 1;
    transform: translate3d(0, 0, 0) rotate(0deg);
  }
  100% {
    opacity: 0;
    transform: translate3d(0, -118%, 0) rotate(-4deg);
  }
}

.ca-ba__tag {
  display: inline-flex;
  margin: 0 0 12px;
  padding: 5px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: rgba(28, 26, 21, 0.06);
  color: var(--ca-muted);
}

.ca-ba__card--after .ca-ba__tag {
  background: var(--ca-ink);
  color: #fbfaf6;
}

.ca-ba__card h3 {
  margin: 0 0 16px;
  font-family: "Sentient", Georgia, serif;
  font-weight: 400;
  font-size: 1.45rem;
  letter-spacing: -0.02em;
  line-height: 1.25;
  color: var(--ca-ink);
}

.ca-ba__stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px 14px;
  margin: 0 0 22px;
  padding: 14px 0;
  border-top: 1px solid rgba(63, 90, 56, 0.16);
  border-bottom: 1px solid rgba(63, 90, 56, 0.16);
}

.ca-ba__stats strong {
  display: block;
  font-family: "Sentient", Georgia, serif;
  font-weight: 300;
  font-size: clamp(1.3rem, 2.2vw, 1.65rem);
  letter-spacing: -0.03em;
  color: #3f5a38;
  line-height: 1.1;
}

.ca-ba__stats span {
  display: block;
  margin-top: 4px;
  font-size: 12px;
  line-height: 1.35;
  color: var(--ca-muted);
}

.ca-ba__kicker {
  margin: 0 0 10px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #3f5a38;
}

.ca-ba__quote {
  margin: 20px 0 0;
  padding: 14px 16px;
  border-radius: 12px;
  background: rgba(63, 90, 56, 0.08);
}

.ca-ba__quote blockquote {
  margin: 0 0 8px;
  font-family: "Sentient", Georgia, serif;
  font-weight: 300;
  font-size: 1.05rem;
  line-height: 1.45;
  color: var(--ca-ink);
}

.ca-ba__quote figcaption {
  font-size: 12px;
  line-height: 1.4;
  color: var(--ca-muted);
}

.ca-ba__card ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.ca-ba__card li {
  padding-left: 18px;
  position: relative;
  font-size: 0.95rem;
  line-height: 1.45;
  color: #2a2823;
}

.ca-ba__card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(28, 26, 21, 0.28);
}

.ca-ba__card--after li::before {
  background: #3f5a38;
}

.ca-ba__card--before h3,
.ca-ba__card--before li {
  color: var(--ca-muted);
}

.ca-ba__control {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  min-width: 148px;
}

.ca-ba__btn {
  appearance: none;
  border: 0;
  cursor: pointer;
  height: 44px;
  padding: 0 16px;
  border-radius: 10px;
  background: #1c1a15;
  color: #fbfaf6;
  font: 500 14px/1.2 "Onest", system-ui, sans-serif;
}

.ca-ba__btn:disabled {
  opacity: 0.6;
  cursor: wait;
}

.ca-ba.is-after .ca-ba__btn {
  background: #fff;
  color: #1c1a15;
  box-shadow: inset 0 0 0 1px rgba(28, 26, 21, 0.16);
}

.ca-ba__control p {
  margin: 0;
  max-width: 12rem;
  font-size: 13px;
  line-height: 1.4;
  color: var(--ca-muted);
}

@media (max-width: 860px) {
  .ca-ba {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .ca-ba__control {
    flex-direction: row;
    align-items: center;
    min-width: 0;
  }
  .ca-ba__control p {
    max-width: none;
  }
  .ca-ba__card--after {
    padding: 24px 22px 26px;
  }
  .ca-ba__stats {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }
  .ca-ba-smile {
    width: 32px;
    height: 32px;
  }
  .ca-ba-sad--1 {
    width: 40px;
    height: 44px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .ca-ba__card--after,
  .ca-ba.is-after .ca-ba__card--after,
  .ca-ba.is-reset .ca-ba__card--after,
  .ca-ba.is-crushing .ca-ba__card--before,
  .ca-ba.is-crushing .ca-ba__card--after {
    animation: none;
    transition: opacity 0.2s ease;
  }
  .ca-ba:not(.is-after) .ca-ba__card--after {
    opacity: 0;
    transform: none;
  }
  .ca-ba.is-after .ca-ba__card--after {
    opacity: 1;
    transform: none;
  }
  .ca-ba.is-after .ca-ba__card--before {
    opacity: 0;
    transform: none;
    filter: none;
    transition: opacity 0.2s ease;
  }
  .ca-ba-fly,
  .ca-ba-sad,
  .ca-ba-wilt,
  .ca-ba-tear,
  .ca-ba-fly__wing--l,
  .ca-ba-fly__wing--r,
  .ca-ba.is-after .ca-ba-smile,
  .ca-ba.is-after .ca-ba-bloom--left-1,
  .ca-ba.is-after .ca-ba-bloom--left-2,
  .ca-ba.is-after .ca-ba-bloom--left-curl,
  .ca-ba.is-after .ca-ba-bloom--right-1,
  .ca-ba.is-after .ca-ba-bloom--right-2,
  .ca-ba.is-after .ca-ba-bird--1,
  .ca-ba.is-after .ca-ba-bird--2,
  .ca-ba.is-after .ca-ba-bird--3,
  .ca-ba.is-after .ca-ba-petal--1,
  .ca-ba.is-after .ca-ba-petal--2,
  .ca-ba.is-after .ca-ba-petal--3,
  .ca-ba.is-after .ca-ba-petal--4 {
    animation: none;
  }
  .ca-ba.is-after .ca-ba-smile,
  .ca-ba.is-after .ca-ba-bloom {
    opacity: 0.42;
    transform: none;
  }
  .ca-ba-bird,
  .ca-ba-petal {
    display: none;
  }
}

.ca-feat-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 22px;
  padding: 8px;
  border-radius: 16px;
  background: rgba(28, 26, 21, 0.05);
}

.ca-feat-tabs button {
  appearance: none;
  border: 0;
  cursor: pointer;
  padding: 10px 14px;
  border-radius: 12px;
  background: transparent;
  color: var(--ca-muted);
  font: 600 13px/1.2 "Onest", system-ui, sans-serif;
  transition: background 0.25s ease, color 0.25s ease, box-shadow 0.25s ease;
}

.ca-feat-tabs button.is-active {
  background: #fff;
  color: var(--ca-ink);
  box-shadow: 0 8px 20px rgba(28, 26, 21, 0.08);
}

.ca-feat-panels {
  position: relative;
}

.ca-feat-panel {
  display: none;
}

.ca-feat-panel.is-active {
  display: block;
}

.ca-feat-panels.is-switched .ca-feat-panel.is-active {
  animation: ca-panel-in 0.45s ease both;
}

@keyframes ca-panel-in {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

.ca-feat-mosaic {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 16px;
}

.ca-feat-mosaic__main,
.ca-feat-mosaic__side {
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid var(--ca-line);
  background: #fff;
}

.ca-feat-mosaic__main img,
.ca-feat-mosaic__side img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 260px;
}

.ca-feat-mosaic__side {
  display: grid;
  gap: 16px;
}

@media (max-width: 800px) {
  .ca-feat-mosaic {
    grid-template-columns: 1fr;
  }
}

.ca-legal-pop {
  position: fixed;
  inset: 0;
  z-index: 4000;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 20px;
  background: rgba(28, 26, 21, 0.28);
}

.ca-legal-pop__card {
  width: min(520px, 100%);
  margin-bottom: 12px;
  padding: 22px 22px 20px;
  border-radius: 20px;
  background: #fbfaf6;
  color: #1c1a15;
  border: 1px solid rgba(28, 26, 21, 0.12);
  box-shadow: 0 24px 60px rgba(28, 26, 21, 0.22);
}

.ca-legal-pop__card h2 {
  margin: 0 0 10px;
  font-family: "Sentient", Georgia, serif;
  font-weight: 400;
  font-size: 1.45rem;
  letter-spacing: -0.02em;
}

.ca-legal-pop__card p {
  margin: 0 0 16px;
  color: var(--ca-muted);
  font-size: 0.95rem;
  line-height: 1.55;
}

.ca-legal-pop__card a {
  color: var(--ca-ink);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.ca-legal-pop__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.ca-legal-pop__actions button {
  appearance: none;
  border: 0;
  cursor: pointer;
  border-radius: 12px;
  padding: 12px 16px;
  background: var(--ca-ink);
  color: #fbfaf6;
  font: 600 14px/1.2 "Onest", system-ui, sans-serif;
}

html.ca-veil-in {
  background: #fbfaf6 !important;
}
html.ca-veil-in body {
  opacity: 0 !important;
}
html.ca-veil-in::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 2147483646;
  background: #fbfaf6;
  pointer-events: none;
}

.ca-veil {
  position: fixed;
  inset: 0;
  z-index: 2147483000;
  pointer-events: none;
  visibility: hidden;
}
.ca-veil.is-on {
  visibility: visible;
  pointer-events: auto;
}
.ca-veil__panel {
  position: absolute;
  inset: 0;
  background: #fbfaf6;
  transform: translate3d(0, 100%, 0);
  will-change: transform;
}
.ca-veil.is-cover .ca-veil__panel {
  transform: translate3d(0, 0, 0);
  transition: transform 0.52s cubic-bezier(0.76, 0, 0.24, 1);
}
.ca-veil.is-hold .ca-veil__panel {
  transform: translate3d(0, 0, 0);
  transition: none;
}
.ca-veil.is-reveal .ca-veil__panel {
  transform: translate3d(0, -100%, 0);
  transition: transform 0.62s cubic-bezier(0.76, 0, 0.24, 1);
}
.ca-veil__mark {
  position: absolute;
  left: 50%;
  top: 48%;
  transform: translate(-50%, -50%);
  opacity: 0;
  pointer-events: none;
}
.ca-veil.is-cover .ca-veil__mark {
  opacity: 1;
  transition: opacity 0.28s ease 0.26s;
}
.ca-veil.is-hold .ca-veil__mark {
  opacity: 1;
}
.ca-veil.is-reveal .ca-veil__mark {
  opacity: 0;
  transition: opacity 0.18s ease;
}
.ca-veil__glyph {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 8px;
  background: #3f5a38;
  transform: scale(0.92);
  box-shadow: 0 10px 28px rgba(28, 26, 21, 0.12);
}
.ca-veil.is-cover .ca-veil__glyph,
.ca-veil.is-hold .ca-veil__glyph {
  transform: scale(1);
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1) 0.22s;
}
.ca-veil__glyph img {
  display: block;
  width: 22px;
  height: 20px;
  filter: brightness(0) invert(1);
}

/* How it works — Framer v8 cards, 3×3, native so we can hold 9 */
.ca-workgrid {
  overflow: hidden;
}

.ca-workgrid .ca-lede {
  max-width: 40rem;
  margin-bottom: 20px;
}

.ca-workgrid__legend {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin: 0 0 28px;
  padding: 0;
  list-style: none;
  font-size: 13px;
  color: var(--ca-muted);
}

.ca-workgrid__legend li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.ca-workgrid__swatch {
  width: 14px;
  height: 14px;
  border-radius: 4px;
  flex: none;
  box-shadow: inset 0 0 0 1px rgba(28, 26, 21, 0.12);
}

.ca-workgrid__swatch--setup {
  background: #eceae4;
}

.ca-workgrid__swatch--resident {
  background: #e8c9a4;
}

.ca-workgrid__swatch--family {
  background: #b7d0e0;
}

.ca-workgrid__swatch--staff {
  background: #c5d4b0;
}

.ca-workgrid__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  align-items: stretch;
}

.ca-workcard {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 300px;
  min-width: 0;
  padding: 24px 22px 22px;
  border-radius: 14px;
  background: #fff;
  overflow: hidden;
  box-shadow:
    0 0.6px 1.1px rgba(28, 26, 21, 0.04),
    0 2.3px 4.1px rgba(28, 26, 21, 0.04),
    0 10px 18px rgba(28, 26, 21, 0.05);
  transition:
    transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.45s ease;
}

@media (prefers-reduced-motion: no-preference) {
  .ca-workcard:hover {
    transform: translateY(-6px);
    box-shadow:
      0 0.6px 1.1px rgba(28, 26, 21, 0.05),
      0 4px 10px rgba(28, 26, 21, 0.06),
      0 18px 36px rgba(28, 26, 21, 0.08);
  }
}

.ca-workcard__icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  background: #1c1a15;
  color: #fbfaf6;
  z-index: 1;
}

.ca-workcard__icon svg {
  width: 20px;
  height: 20px;
}

.ca-workcard--setup {
  background: #f4f2ec;
}

.ca-workcard--resident {
  background: #f6e6d4;
}

.ca-workcard--resident .ca-workcard__icon {
  background: #7a4e2e;
}

.ca-workcard--family {
  background: #dceaf2;
}

.ca-workcard--family .ca-workcard__icon {
  background: #3a5c73;
}

.ca-workcard--staff {
  background: #e4ecd8;
}

.ca-workcard--staff .ca-workcard__icon {
  background: #3f5234;
}

.ca-workcard__n {
  position: absolute;
  top: -6px;
  right: 8px;
  font-family: "Onest", system-ui, sans-serif;
  font-size: clamp(84px, 8vw, 120px);
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 1;
  color: rgba(28, 26, 21, 0.07);
  -webkit-text-stroke: 1px rgba(28, 26, 21, 0.18);
  pointer-events: none;
  user-select: none;
}

.ca-workcard__body {
  position: relative;
  z-index: 1;
  margin-top: 36px;
}

.ca-workcard h3 {
  margin: 0 0 12px;
  font-family: "Sentient", Georgia, serif;
  font-weight: 400;
  font-size: 1.28rem;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.ca-workcard ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 8px;
}

.ca-workcard li {
  position: relative;
  padding-left: 14px;
  font-size: 0.92rem;
  line-height: 1.45;
  color: #2a2823;
}

.ca-workcard li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(28, 26, 21, 0.28);
}

.ca-workgrid__grid > .ca-reveal:nth-child(1) { transition-delay: 0.02s; }
.ca-workgrid__grid > .ca-reveal:nth-child(2) { transition-delay: 0.07s; }
.ca-workgrid__grid > .ca-reveal:nth-child(3) { transition-delay: 0.12s; }
.ca-workgrid__grid > .ca-reveal:nth-child(4) { transition-delay: 0.17s; }
.ca-workgrid__grid > .ca-reveal:nth-child(5) { transition-delay: 0.22s; }
.ca-workgrid__grid > .ca-reveal:nth-child(6) { transition-delay: 0.27s; }
.ca-workgrid__grid > .ca-reveal:nth-child(7) { transition-delay: 0.32s; }
.ca-workgrid__grid > .ca-reveal:nth-child(8) { transition-delay: 0.37s; }
.ca-workgrid__grid > .ca-reveal:nth-child(9) { transition-delay: 0.42s; }

@media (max-width: 1239.98px) {
  .ca-workgrid__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 767.98px) {
  .ca-workgrid__grid {
    grid-template-columns: 1fr;
  }
  .ca-workcard {
    min-height: 0;
  }
  .ca-workcard__n {
    font-size: 88px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .ca-veil__panel {
    transform: none;
    opacity: 0;
  }
  .ca-veil.is-cover .ca-veil__panel,
  .ca-veil.is-hold .ca-veil__panel {
    opacity: 1;
    transition: opacity 0.16s ease;
  }
  .ca-veil.is-reveal .ca-veil__panel {
    opacity: 0;
    transition: opacity 0.2s ease;
  }
  .ca-veil__mark {
    display: none;
  }
}

/* ——— Updates bento grids (extracted motion, CareAmi chrome) ———
   All rules live under .ca-ub so landing / header / timeline are untouched. */
.ca-ub {
  --ub-ink: #1c1a15;
  --ub-muted: #52524e;
  --ub-line: rgba(28, 26, 21, 0.12);
  --ub-card: #ffffff;
  --ub-wash: #f7f7f5;
  --ub-forest: #3f5a38;
  --ub-forest-soft: rgba(63, 90, 56, 0.12);
  padding: clamp(28px, 5vw, 56px) clamp(20px, 4vw, 40px) clamp(48px, 7vw, 80px);
  background: var(--ub-wash);
}

.ca-ub__inner {
  max-width: 1120px;
  margin: 0 auto;
}

.ca-ub__kicker {
  margin: 0 0 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ub-forest);
}

.ca-ub__title {
  margin: 0 0 28px;
  max-width: 22ch;
  font-family: "Sentient", Georgia, serif;
  font-size: clamp(28px, 3.4vw, 42px);
  font-weight: 400;
  letter-spacing: -0.03em;
  line-height: 1.12;
  color: var(--ub-ink);
}

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

@property --ub-angle {
  syntax: "<angle>";
  inherits: false;
  initial-value: 0deg;
}

.ca-ub__card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  background: var(--ub-card);
  border: 1px solid transparent;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 12px 36px rgba(28, 26, 21, 0.04);
  isolation: isolate;
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.45s ease;
}

.ca-ub__card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 4;
  border-radius: inherit;
  padding: 1.5px;
  background: conic-gradient(
    from var(--ub-angle),
    rgba(63, 90, 56, 0.12),
    rgba(63, 90, 56, 0.72),
    rgba(212, 196, 148, 0.55),
    rgba(63, 90, 56, 0.18),
    rgba(63, 90, 56, 0.65),
    rgba(63, 90, 56, 0.12)
  );
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  animation: ca-ub-border 9s linear infinite;
}

.ca-ub__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 22px 48px rgba(63, 90, 56, 0.14);
}

.ca-ub__card:hover::before {
  animation-duration: 4.5s;
  filter: brightness(1.18);
}

.ca-ub__copy {
  padding: 22px 22px 24px;
}

.ca-ub__copy h3 {
  margin: 0 0 8px;
  font-family: "Onest", system-ui, sans-serif;
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.03em;
  color: var(--ub-ink);
}

.ca-ub__copy p {
  margin: 0;
  font-size: 15px;
  line-height: 1.45;
  color: var(--ub-muted);
}

.ca-ub__stage {
  position: relative;
  height: 246px;
  overflow: hidden;
}

.ca-ub__card--wide {
  grid-column: span 2;
  flex-direction: row;
  align-items: stretch;
}

.ca-ub__card--wide .ca-ub__stage {
  width: 42%;
  flex: none;
  height: auto;
  min-height: 220px;
}

.ca-ub__card--wide .ca-ub__copy {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 28px 36px 32px;
}

.ca-ub__card--wide .ca-ub__copy h3 {
  font-size: 26px;
}

.ca-ub__card--wide .ca-ub-shield__mark svg {
  width: 132px;
}

.ca-ub-stack {
  display: grid;
  grid-template-rows: 1fr 1fr;
  gap: 12px;
  min-width: 0;
  min-height: 0;
}

.ca-ub-stack .ca-ub__card {
  height: 100%;
}

/* Shield + particles */
.ca-ub-shield {
  position: relative;
  height: 100%;
  background: radial-gradient(circle at 50% 42%, rgba(63, 90, 56, 0.08), transparent 62%);
}

.ca-ub-shield canvas {
  display: block;
  width: 100%;
  height: 100%;
}

.ca-ub-shield__mark {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  pointer-events: none;
}

.ca-ub-shield__mark svg {
  width: 118px;
  height: auto;
  filter: drop-shadow(0 8px 18px rgba(63, 90, 56, 0.18));
}

.ca-ub-shield::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(transparent 20%, #fff 72%);
  pointer-events: none;
}

/* Scrolling process list */
.ca-ub-flow {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  height: 100%;
  padding: 16px 20px 0;
}

.ca-ub-flow__label {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  font-size: 13px;
  font-weight: 600;
  color: var(--ub-muted);
}

.ca-ub-flow__spin {
  width: 16px;
  height: 16px;
  border: 2px solid var(--ub-forest-soft);
  border-top-color: var(--ub-forest);
  border-radius: 50%;
  animation: ca-ub-spin 0.9s linear infinite;
}

.ca-ub-flow__list {
  position: relative;
  width: 100%;
  max-width: 280px;
  height: 138px;
  overflow: hidden;
  border-radius: 14px 14px 0 0;
  background: #f3f2ed;
  padding: 16px 14px;
}

.ca-ub-flow__track {
  display: flex;
  flex-direction: column;
  gap: 10px;
  animation: ca-ub-flow 10s linear infinite;
}

.ca-ub-flow__row {
  display: flex;
  gap: 10px;
  font-size: 13px;
  font-weight: 500;
  color: var(--ub-forest);
  white-space: nowrap;
}

.ca-ub-flow__n {
  width: 18px;
  flex: none;
  color: var(--ub-muted);
}

.ca-ub-flow__list::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 28px;
  background: linear-gradient(#f3f2ed, transparent);
  pointer-events: none;
  z-index: 1;
}

/* Orbiting tools */
.ca-ub-orbit {
  position: relative;
  height: 100%;
  overflow: hidden;
}

.ca-ub-orbit__roof {
  position: absolute;
  top: 0;
  left: 50%;
  width: 142px;
  height: 100px;
  margin-left: -71px;
  background: rgba(63, 90, 56, 0.08);
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  border: 1px solid var(--ub-line);
}

.ca-ub-orbit__stem {
  position: absolute;
  top: 92px;
  left: 50%;
  width: 1px;
  height: 146px;
  margin-left: -0.5px;
  background: var(--ub-line);
}

.ca-ub-orbit__hub {
  position: absolute;
  top: 58px;
  left: 50%;
  width: 80px;
  height: 80px;
  margin-left: -40px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: #1c1a15;
  color: #fbfaf6;
  box-shadow: 0 18px 32px rgba(28, 26, 21, 0.22);
  z-index: 2;
}

.ca-ub-orbit__hub svg {
  width: 44px;
  height: 44px;
}

.ca-ub-orbit__ring {
  position: absolute;
  top: 40px;
  width: 303px;
  height: 303px;
}

.ca-ub-orbit__ring--l { right: 50%; margin-right: 18px; }
.ca-ub-orbit__ring--r { left: 50%; margin-left: 18px; }

.ca-ub-orbit__poly {
  width: 100%;
  height: 100%;
  fill: rgba(63, 90, 56, 0.08);
  stroke: var(--ub-line);
  stroke-width: 2;
}

.ca-ub-orbit__dot {
  position: absolute;
  top: 0;
  left: 0;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #fff;
  border: 1px solid var(--ub-line);
  box-shadow: 0 4px 12px rgba(28, 26, 21, 0.08);
  offset-path: path("M 151.082 1.082 L 257.148 45.016 L 301.082 151.082 L 257.148 257.148 L 151.082 301.082 L 45.016 257.148 L 1.082 151.082 L 45.016 45.016 Z");
  offset-rotate: 0deg;
  animation: ca-ub-orbit 28s linear infinite;
}

.ca-ub-orbit__dot img {
  width: 22px;
  height: 22px;
  object-fit: contain;
}

.ca-ub-orbit__ring--l .ca-ub-orbit__dot:nth-child(2) { animation-delay: -3.5s; }
.ca-ub-orbit__ring--l .ca-ub-orbit__dot:nth-child(3) { animation-delay: -7s; }
.ca-ub-orbit__ring--l .ca-ub-orbit__dot:nth-child(4) { animation-delay: -10.5s; }
.ca-ub-orbit__ring--l .ca-ub-orbit__dot:nth-child(5) { animation-delay: -14s; }
.ca-ub-orbit__ring--l .ca-ub-orbit__dot:nth-child(6) { animation-delay: -17.5s; }
.ca-ub-orbit__ring--l .ca-ub-orbit__dot:nth-child(7) { animation-delay: -21s; }
.ca-ub-orbit__ring--l .ca-ub-orbit__dot:nth-child(8) { animation-delay: -24.5s; }
.ca-ub-orbit__ring--r .ca-ub-orbit__dot { animation-direction: reverse; }
.ca-ub-orbit__ring--r .ca-ub-orbit__dot:nth-child(2) { animation-delay: -3.5s; }
.ca-ub-orbit__ring--r .ca-ub-orbit__dot:nth-child(3) { animation-delay: -7s; }
.ca-ub-orbit__ring--r .ca-ub-orbit__dot:nth-child(4) { animation-delay: -10.5s; }
.ca-ub-orbit__ring--r .ca-ub-orbit__dot:nth-child(5) { animation-delay: -14s; }
.ca-ub-orbit__ring--r .ca-ub-orbit__dot:nth-child(6) { animation-delay: -17.5s; }
.ca-ub-orbit__ring--r .ca-ub-orbit__dot:nth-child(7) { animation-delay: -21s; }
.ca-ub-orbit__ring--r .ca-ub-orbit__dot:nth-child(8) { animation-delay: -24.5s; }

.ca-ub-orbit::before,
.ca-ub-orbit::after {
  content: "";
  position: absolute;
  pointer-events: none;
  z-index: 3;
}
.ca-ub-orbit::before {
  inset: 0 0 auto;
  height: 18px;
  background: linear-gradient(#fff, transparent);
}
.ca-ub-orbit::after {
  inset: auto 0 0;
  height: 18px;
  background: linear-gradient(transparent, #fff);
}

/* Staff dashboard mock — shipped product, not a logo orbit */
.ca-ub-dash {
  position: relative;
  height: 100%;
  display: grid;
  place-items: center;
  padding: 16px 14px 14px;
  background:
    radial-gradient(ellipse at 78% 12%, rgba(63, 90, 56, 0.16), transparent 46%),
    linear-gradient(165deg, #f3f2ed 0%, #fff 58%);
}

.ca-ub-dash__win {
  width: 100%;
  max-width: 292px;
  background: #fff;
  border: 1px solid rgba(28, 26, 21, 0.1);
  border-radius: 14px;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.8) inset,
    0 18px 40px rgba(28, 26, 21, 0.1);
  overflow: hidden;
  transform: translateY(4px);
  animation: ca-ub-dash-in 0.7s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.ca-ub__card:hover .ca-ub-dash__win {
  transform: translateY(0);
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.ca-ub-dash__chrome {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 8px 10px;
  background: #f7f7f5;
  border-bottom: 1px solid rgba(28, 26, 21, 0.08);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--ub-ink);
}

.ca-ub-dash__chrome i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #d9d4c8;
}

.ca-ub-dash__chrome i:nth-child(1) { background: #c9c4b6; }
.ca-ub-dash__chrome i:nth-child(2) { background: #d4cfc2; }
.ca-ub-dash__chrome i:nth-child(3) { background: #ddd8cc; }

.ca-ub-dash__chrome span {
  margin-left: 4px;
}

.ca-ub-dash__chrome em {
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-style: normal;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ub-forest);
}

.ca-ub-dash__chrome em::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--ub-forest);
  box-shadow: 0 0 0 0 rgba(63, 90, 56, 0.45);
  animation: ca-ub-dash-pulse 1.8s ease-out infinite;
}

.ca-ub-dash__body {
  display: grid;
  grid-template-columns: 64px 1fr;
  min-height: 0;
}

.ca-ub-dash__nav {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 8px 6px;
  background: #fbfaf6;
  border-right: 1px solid rgba(28, 26, 21, 0.06);
  font-size: 9px;
  font-weight: 600;
  color: var(--ub-muted);
}

.ca-ub-dash__nav span {
  padding: 5px 6px;
  border-radius: 6px;
}

.ca-ub-dash__nav span.is-on {
  background: rgba(63, 90, 56, 0.12);
  color: var(--ub-forest);
}

.ca-ub-dash__main {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}

.ca-ub-dash__row {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 8px;
  background: #f7f7f5;
  border-radius: 8px;
  font-size: 10px;
  color: var(--ub-ink);
}

.ca-ub-dash__row strong {
  font-weight: 600;
  letter-spacing: -0.02em;
}

.ca-ub-dash__row small {
  margin-left: auto;
  font-size: 9px;
  color: var(--ub-muted);
}

.ca-ub-dash__row b {
  flex: none;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ub-forest);
  background: rgba(63, 90, 56, 0.1);
  border-radius: 999px;
  padding: 2px 6px;
}

.ca-ub-dash__ping {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 7px 8px;
  border-radius: 8px;
  background: rgba(63, 90, 56, 0.1);
  color: var(--ub-forest);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: -0.02em;
  animation: ca-ub-dash-ping 4.8s ease-in-out infinite;
}

.ca-ub-dash__ping span {
  flex: none;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--ub-forest);
}

.ca-ub-dash__done {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  margin-top: 2px;
}

.ca-ub-dash__done em {
  font-style: normal;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ub-ink);
  background: #fff;
  border: 1px solid rgba(28, 26, 21, 0.1);
  border-radius: 999px;
  padding: 3px 6px 3px 5px;
}

.ca-ub-dash__done em::before {
  content: "✓";
  margin-right: 3px;
  color: var(--ub-forest);
}

@keyframes ca-ub-dash-in {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: translateY(4px); }
}

@keyframes ca-ub-dash-pulse {
  0% { box-shadow: 0 0 0 0 rgba(63, 90, 56, 0.45); }
  70% { box-shadow: 0 0 0 7px rgba(63, 90, 56, 0); }
  100% { box-shadow: 0 0 0 0 rgba(63, 90, 56, 0); }
}

@keyframes ca-ub-dash-ping {
  0%, 12%, 100% { opacity: 1; transform: translateY(0); }
  6% { opacity: 1; transform: translateY(-1px); }
  50% { opacity: 0.55; }
}

/* Prompt spotlight */
.ca-ub-prompt {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  padding: 24px;
}

.ca-ub-prompt__glow {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
  mask-image: radial-gradient(160px at var(--ub-mx, 70%) var(--ub-my, 30%), #000 0%, transparent 100%);
  -webkit-mask-image: radial-gradient(160px at var(--ub-mx, 70%) var(--ub-my, 30%), #000 0%, transparent 100%);
}

.ca-ub__card:hover .ca-ub-prompt__glow {
  opacity: 1;
}

.ca-ub-prompt__box {
  position: relative;
  z-index: 1;
  width: min(100%, 484px);
  border-radius: 16px;
  border: 1px solid var(--ub-line);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 16px 40px rgba(28, 26, 21, 0.1);
  padding: 16px 16px 14px;
}

.ca-ub-prompt__box p {
  margin: 0 0 18px;
  min-height: 72px;
  font-size: 17px;
  line-height: 1.4;
  color: var(--ub-ink);
}

.ca-ub-prompt__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.ca-ub-prompt__model {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  color: var(--ub-muted);
}

.ca-ub-prompt__model img {
  width: 18px;
  height: 18px;
}

.ca-ub-prompt__send {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 8px;
  background: var(--ub-forest);
  color: #fff;
}

/* Voice bars */
.ca-ub-voice {
  display: grid;
  place-items: center;
  height: 100%;
  gap: 12px;
}

.ca-ub-voice__bars {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 3px;
  height: 88px;
}

.ca-ub-voice__bars span {
  width: 3px;
  height: var(--h, 50%);
  border-radius: 99px;
  background: rgba(63, 90, 56, 0.82);
  animation: ca-ub-bar 1.1s ease-in-out infinite;
  transform-origin: bottom;
}

.ca-ub-voice p {
  margin: 0;
  font-size: 14px;
  font-weight: 500;
  color: var(--ub-ink);
}

/* Speech monitor — one surface: live wave, sweep, finding extracted */
.ca-ub-vitals {
  height: 100%;
  padding: 14px 14px 0;
}

.ca-ub-vitals__scope {
  position: relative;
  height: 92px;
  overflow: hidden;
  border-radius: 12px 12px 0 0;
  background:
    linear-gradient(180deg, rgba(63, 90, 56, 0.06), transparent 70%),
    #f3f2ed;
}

.ca-ub-vitals__wave {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3px;
  height: 100%;
  padding: 0 16px;
}

.ca-ub-vitals__wave span {
  flex: none;
  width: 3px;
  height: 18%;
  border-radius: 99px;
  background: #3f5a38;
  transform-origin: center;
  animation: ca-ub-scope 0.9s ease-in-out infinite;
}

.ca-ub-vitals__wave span:nth-child(odd) { animation-duration: 0.72s; }
.ca-ub-vitals__wave span:nth-child(3n) { animation-duration: 1.05s; animation-delay: -0.2s; }
.ca-ub-vitals__wave span:nth-child(4n) { animation-duration: 0.58s; animation-delay: -0.4s; }
.ca-ub-vitals__wave span:nth-child(5n) { animation-duration: 1.18s; animation-delay: -0.1s; }

.ca-ub-vitals__sweep {
  position: absolute;
  top: 8px;
  bottom: 8px;
  width: 2px;
  border-radius: 99px;
  background: #3f5a38;
  box-shadow: 0 0 16px rgba(63, 90, 56, 0.55);
  animation: ca-ub-sweep 2.6s cubic-bezier(0.4, 0, 0.2, 1) infinite;
  pointer-events: none;
}

.ca-ub-vitals__read {
  position: relative;
  margin-top: -1px;
  padding: 16px 16px 14px;
  background: #f3f2ed;
  border-radius: 0 0 12px 12px;
  min-height: 118px;
}

.ca-ub-vitals__live {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 10px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ub-forest);
}

.ca-ub-vitals__live span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #3f5a38;
  box-shadow: 0 0 0 0 rgba(63, 90, 56, 0.45);
  animation: ca-ub-live 1.4s ease-out infinite;
}

.ca-ub-vitals__findings {
  position: relative;
  min-height: 52px;
}

.ca-ub-vitals__findings p {
  position: absolute;
  inset: 0;
  margin: 0;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.35;
  color: var(--ub-ink);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.35s ease, transform 0.35s ease;
  pointer-events: none;
}

.ca-ub-vitals__findings p::before {
  content: attr(data-tag);
  display: block;
  margin-bottom: 4px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ub-forest);
}

.ca-ub-vitals__findings p.is-on {
  opacity: 1;
  transform: none;
}

.ca-ub-vitals.is-tick .ca-ub-vitals__findings p.is-on {
  animation: ca-ub-lock 0.45s ease;
}

.ca-ub-vitals__pips {
  display: flex;
  gap: 6px;
  margin-top: 8px;
}

.ca-ub-vitals__pips i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(63, 90, 56, 0.22);
}

.ca-ub-vitals__pips i.is-on {
  background: #3f5a38;
}

@keyframes ca-ub-scope {
  0%, 100% { height: 16%; }
  40% { height: 78%; }
  70% { height: 32%; }
}
@keyframes ca-ub-sweep {
  0% { left: 6%; opacity: 0; }
  8% { opacity: 1; }
  88% { opacity: 1; }
  100% { left: 94%; opacity: 0; }
}
@keyframes ca-ub-live {
  0% { box-shadow: 0 0 0 0 rgba(63, 90, 56, 0.45); }
  100% { box-shadow: 0 0 0 8px rgba(63, 90, 56, 0); }
}
@keyframes ca-ub-lock {
  0% { filter: brightness(1.4); }
  100% { filter: none; }
}

/* Faces grid + chips */
.ca-ub-faces {
  padding: 8px 18px 0;
}

.ca-ub-faces__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.ca-ub-faces__cell {
  height: 110px;
  border-radius: 14px;
  border: 1px solid var(--ub-line);
  background: #f3f2ed;
  overflow: hidden;
  filter: grayscale(1);
  transition: filter 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}

.ca-ub-faces__cell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ca-ub-faces__cell:hover,
.ca-ub-faces__cell.is-on {
  filter: none;
  box-shadow: 0 12px 28px rgba(28, 26, 21, 0.12);
  transform: translateY(-2px);
}

.ca-ub-chips {
  display: flex;
  gap: 10px;
  overflow: hidden;
  padding: 18px 0 8px;
  mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
}

.ca-ub-chips__track {
  display: flex;
  gap: 10px;
  animation: ca-ub-chips 14s linear infinite;
}

.ca-ub-chips span {
  flex: none;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  color: var(--ub-forest);
  background: var(--ub-forest-soft);
  white-space: nowrap;
}

/* Efficiency cover */
.ca-ub-cover {
  position: relative;
  height: 108px;
  margin: 8px 8px 0;
  overflow: hidden;
  border-radius: 8px;
}

.ca-ub-cover__lines {
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    to bottom,
    transparent 0 8px,
    rgba(63, 90, 56, 0.09) 8px 9px
  );
}

.ca-ub-cover__scan {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(63, 90, 56, 0.45), transparent);
  background-size: 28% 100%;
  animation: ca-ub-scan 2.8s linear infinite;
}

.ca-ub-cover img {
  position: relative;
  z-index: 1;
  display: block;
  height: 78px;
  margin: 16px auto 0;
  transition: filter 0.25s ease;
}

.ca-ub__card:hover .ca-ub-cover img {
  filter: brightness(0) invert(1);
}

.ca-ub__card:hover .ca-ub-cover {
  background: #1c1a15;
}

/* Task list */
.ca-ub-tasks {
  position: relative;
  flex: 1;
  min-height: 128px;
  overflow: hidden;
  padding: 8px 20px 0;
}

.ca-ub-tasks__track {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.ca-ub-task {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--ub-ink);
}

.ca-ub-task i {
  flex: none;
  width: 22px;
  height: 22px;
  border-radius: 5px;
  border: 1.5px solid var(--ub-line);
  display: grid;
  place-items: center;
}

.ca-ub-task.is-done i {
  background: var(--ub-forest);
  border-color: var(--ub-forest);
  color: #fff;
}

.ca-ub-task.is-done span {
  text-decoration: line-through;
  opacity: 0.55;
}

.ca-ub-tasks::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(transparent 48%, #fff 100%);
  pointer-events: none;
}

@keyframes ca-ub-spin { to { transform: rotate(360deg); } }
@keyframes ca-ub-flow {
  0% { transform: translateY(0); }
  100% { transform: translateY(-50%); }
}
@keyframes ca-ub-orbit { to { offset-distance: 100%; } }
@keyframes ca-ub-chips {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@keyframes ca-ub-scan {
  0% { background-position: -40% 0; }
  100% { background-position: 140% 0; }
}
@keyframes ca-ub-bar {
  0%, 100% { height: 28%; }
  50% { height: var(--h, 80%); }
}
@keyframes ca-ub-border {
  to { --ub-angle: 360deg; }
}

@media (max-width: 1100px) {
  .ca-ub__grid {
    grid-template-columns: 1fr 1fr;
  }
  .ca-ub__card--wide { grid-column: span 2; }
  .ca-ub-stack { grid-column: span 1; }
}

@media (max-width: 720px) {
  .ca-ub__grid {
    grid-template-columns: 1fr;
  }
  .ca-ub__card--wide,
  .ca-ub-stack { grid-column: span 1; }
  .ca-ub__card--wide {
    flex-direction: column;
  }
  .ca-ub__card--wide .ca-ub__stage {
    width: 100%;
    height: 220px;
  }
  .ca-ub-orbit__ring--l { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  .ca-ub-flow__spin,
  .ca-ub-flow__track,
  .ca-ub-orbit__dot,
  .ca-ub-chips__track,
  .ca-ub-cover__scan,
  .ca-ub-voice__bars span,
  .ca-ub-vitals__wave span,
  .ca-ub-vitals__sweep,
  .ca-ub-vitals__live span,
  .ca-ub__card::before,
  .ca-ub-dash__win,
  .ca-ub-dash__chrome em::before,
  .ca-ub-dash__ping {
    animation: none;
  }
  .ca-ub__card:hover {
    transform: none;
  }
}
