:root {
  --ink: #2f2630;
  --muted: #756b70;
  --paper: #fffafc;
  --line: rgba(124, 101, 108, 0.16);
  --violet: #c99fc7;
  --cyan: #c9d7d2;
  --rose: #d66f9a;
  --mint: #dbe6df;
  --sun: #e89b6f;
  --peach: #eba181;
  --blush: #efc2d6;
  --shadow: 0 24px 70px rgba(188, 129, 150, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  overflow-x: hidden;
  color: var(--ink);
  font-family: Inter, "Noto Sans SC", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at 8% 12%, rgba(235, 161, 129, 0.11), transparent 28%),
    radial-gradient(circle at 82% 18%, rgba(201, 215, 210, 0.12), transparent 30%),
    linear-gradient(135deg, #ffffff 0%, #fffafd 42%, #ffffff 72%, #fffdf9 100%);
}

.drip-cursor,
.cursor-drip-trail {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  pointer-events: none;
}

.drip-cursor {
  display: none;
  width: 38px;
  height: 38px;
  border-radius: 999px;
  opacity: 0.36;
  background:
    radial-gradient(circle at 31% 24%, rgba(255, 255, 255, 0.96), transparent 13%),
    radial-gradient(circle at 68% 30%, rgba(255, 244, 184, 0.34), transparent 32%),
    radial-gradient(circle at 28% 76%, rgba(116, 226, 239, 0.34), transparent 38%),
    radial-gradient(circle at 74% 72%, rgba(205, 161, 239, 0.38), transparent 38%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.42), rgba(248, 197, 226, 0.28), rgba(201, 215, 210, 0.22));
  box-shadow:
    inset 8px 8px 16px rgba(255, 255, 255, 0.48),
    inset -10px -12px 24px rgba(201, 159, 239, 0.14),
    0 0 0 1px rgba(255, 255, 255, 0.68) inset,
    0 8px 26px rgba(201, 159, 199, 0.14),
    0 0 42px rgba(116, 226, 239, 0.1);
  filter: saturate(1.08) brightness(1.04);
  mix-blend-mode: screen;
  transform: translate3d(-100px, -100px, 0);
  transition:
    opacity 220ms ease,
    width 220ms ease,
    height 220ms ease,
    filter 220ms ease;
  will-change: transform, opacity;
}

.drip-cursor::before,
.drip-cursor::after {
  position: absolute;
  content: "";
  border-radius: 999px;
  filter: blur(0.1px);
}

.drip-cursor::before {
  top: 6px;
  left: 8px;
  width: 15px;
  height: 10px;
  background: radial-gradient(ellipse at center, rgba(255, 255, 255, 0.86), transparent 72%);
  transform: rotate(-22deg);
}

.drip-cursor::after {
  inset: 4px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-left-color: rgba(116, 226, 239, 0.36);
  border-top-color: rgba(255, 202, 226, 0.48);
  border-right-color: rgba(255, 244, 184, 0.34);
  border-radius: inherit;
  background: transparent;
  box-shadow: inset 3px 4px 8px rgba(255, 255, 255, 0.2);
}

.drip-cursor.is-active {
  opacity: 0.72;
}

.drip-cursor.is-hovering {
  width: 48px;
  height: 48px;
  filter: saturate(1.16) brightness(1.07);
}

.cursor-drip-trail {
  width: var(--trail-size, 18px);
  height: var(--trail-size, 18px);
  border-radius: 999px;
  opacity: 0.38;
  background:
    radial-gradient(circle at 32% 22%, rgba(255, 255, 255, 0.82), transparent 18%),
    radial-gradient(circle at 72% 28%, rgba(255, 244, 184, 0.34), transparent 30%),
    radial-gradient(circle at 30% 76%, rgba(116, 226, 239, 0.32), transparent 36%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.3), var(--trail-a, rgba(239, 194, 214, 0.32)), var(--trail-b, rgba(116, 226, 239, 0.24)));
  box-shadow:
    inset 3px 3px 8px rgba(255, 255, 255, 0.34),
    0 0 24px rgba(201, 159, 199, 0.09);
  filter: blur(0.2px) saturate(1.04);
  mix-blend-mode: screen;
  transform: translate3d(var(--trail-x), var(--trail-y), 0);
  animation: cursorDripFade 980ms ease-out forwards;
}

.cursor-drip-trail::after {
  position: absolute;
  inset: 3px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  background: transparent;
  content: "";
}

@media (pointer: fine) {
  body.has-drip-cursor,
  body.has-drip-cursor a,
  body.has-drip-cursor button,
  body.has-drip-cursor .button,
  body.has-drip-cursor [role="button"] {
    cursor: none;
  }

  .drip-cursor {
    display: block;
  }
}

body::before {
  position: fixed;
  inset: 0;
  pointer-events: none;
  content: "";
  background-image:
    linear-gradient(rgba(91, 113, 160, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(91, 113, 160, 0.045) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.9), transparent 78%);
}

@keyframes cursorDripFade {
  0% {
    opacity: 0.42;
    transform: translate3d(var(--trail-x), var(--trail-y), 0) scale(0.86);
  }

  100% {
    opacity: 0;
    transform: translate3d(var(--trail-x-end), var(--trail-y-end), 0) scale(0.26);
  }
}

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

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

.art-wash {
  position: fixed;
  z-index: 0;
  pointer-events: none;
  border-radius: 48% 52% 55% 45% / 45% 56% 44% 55%;
  opacity: 0.16;
  filter: blur(16px);
  mix-blend-mode: screen;
}

.art-wash::before,
.art-wash::after {
  position: absolute;
  content: "";
  border-radius: 999px;
  background: inherit;
  filter: blur(5px);
}

.wash-a {
  top: 16%;
  left: 4%;
  width: 180px;
  height: 210px;
  background:
    radial-gradient(circle at 34% 24%, rgba(255, 255, 255, 0.48), transparent 26%),
    radial-gradient(circle at 48% 50%, rgba(239, 194, 214, 0.76), transparent 56%),
    rgba(235, 161, 129, 0.34);
  transform: rotate(-14deg);
}

.wash-a::before {
  right: 18px;
  bottom: -38px;
  width: 42px;
  height: 86px;
}

.wash-a::after {
  right: 64px;
  bottom: -70px;
  width: 24px;
  height: 58px;
}

.wash-b {
  top: 58%;
  right: 7%;
  width: 220px;
  height: 190px;
  background:
    radial-gradient(circle at 44% 30%, rgba(255, 255, 255, 0.5), transparent 25%),
    radial-gradient(circle at 58% 58%, rgba(214, 111, 154, 0.58), transparent 60%),
    rgba(201, 159, 199, 0.24);
  transform: rotate(16deg);
}

.wash-b::before {
  left: 28px;
  bottom: -44px;
  width: 36px;
  height: 82px;
}

.wash-b::after {
  left: 86px;
  bottom: -68px;
  width: 22px;
  height: 52px;
}

.wash-c {
  right: 28%;
  bottom: 8%;
  width: 150px;
  height: 136px;
  background:
    radial-gradient(circle at 52% 32%, rgba(255, 255, 255, 0.44), transparent 24%),
    radial-gradient(circle at 50% 58%, rgba(232, 155, 111, 0.48), transparent 58%),
    rgba(239, 194, 214, 0.24);
  opacity: 0.16;
  transform: rotate(-8deg);
}

.site-header {
  position: fixed;
  top: 16px;
  left: 50%;
  z-index: 5;
  display: flex;
  width: min(1160px, calc(100% - 40px));
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 0;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.66);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 12px 36px rgba(188, 129, 150, 0.1);
  backdrop-filter: blur(18px);
  transform: translateX(-50%);
  transition: opacity 420ms ease, transform 420ms cubic-bezier(0.22, 1, 0.36, 1), background 260ms ease, box-shadow 260ms ease;
  will-change: transform, opacity;
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 16px 42px rgba(188, 129, 150, 0.12);
}

.site-header[data-reveal].is-visible {
  transform: translateX(-50%);
}

.brand,
.site-nav {
  display: flex;
  align-items: center;
}

.brand {
  gap: 8px;
  min-height: 34px;
  font-weight: 600;
}

.brand-name {
  color: var(--ink);
  font-size: 15px;
  font-weight: 650;
}

.brand-divider {
  color: rgba(176, 113, 145, 0.52);
  font-weight: 400;
}

.brand-name-cn {
  color: #9b7188;
  font-family: "Noto Sans SC", sans-serif;
  font-size: 14px;
  font-weight: 500;
}

.site-nav {
  gap: 8px;
  transition:
    opacity 520ms ease,
    visibility 0s,
    transform 520ms cubic-bezier(0.22, 1, 0.36, 1);
}

.site-gated:not(.site-entered) .site-nav {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-8px);
}

.site-gated:not(.hero-docked) .site-header,
.site-gated:not(.hero-docked) .hero-copy {
  opacity: 0;
  pointer-events: none;
}

.site-gated:not(.hero-docked) .site-header[data-reveal].is-visible {
  transform: translate(-50%, -18px);
}

.site-gated:not(.hero-docked) .hero-copy {
  transform: translate3d(-28px, 8px, 0);
}

.site-nav a {
  min-height: 36px;
  padding: 9px 14px;
  border-radius: 999px;
  color: var(--muted);
  font-size: 14px;
  transition: color 180ms ease, background 180ms ease;
}

.site-nav a:hover {
  color: var(--ink);
  background: rgba(214, 111, 154, 0.08);
}

.hero {
  position: relative;
  min-height: 185vh;
  padding: 0;
}

.hero-stage {
  position: sticky;
  top: 0;
  min-height: 100vh;
}

.hero-copy {
  position: fixed;
  top: 22%;
  left: max(20px, calc((100vw - 1160px) / 2));
  z-index: 6;
  width: min(820px, calc(100% - 260px));
  transition:
    opacity 620ms ease,
    transform 760ms cubic-bezier(0.22, 1, 0.36, 1);
}

.site-gated.hero-copy-exited .hero-copy {
  opacity: 0;
  pointer-events: none;
  transform: translate3d(-28px, -8px, 0);
}

.paint-cluster {
  position: absolute;
  top: -68px;
  left: -42px;
  z-index: -1;
  width: 190px;
  height: 210px;
  pointer-events: none;
  opacity: 0.38;
}

.paint-cluster span {
  position: absolute;
  border-radius: 48% 52% 55% 45% / 45% 56% 44% 55%;
  background:
    radial-gradient(circle at 32% 26%, rgba(255, 255, 255, 0.62), transparent 24%),
    radial-gradient(circle at 56% 52%, rgba(239, 194, 214, 0.78), transparent 58%),
    rgba(235, 161, 129, 0.42);
  filter: blur(7px);
}

.paint-cluster span::after {
  position: absolute;
  right: 16%;
  bottom: -34px;
  width: 20px;
  height: 62px;
  border-radius: 999px;
  background: inherit;
  content: "";
}

.paint-cluster span:nth-child(1) {
  top: 0;
  left: 0;
  width: 86px;
  height: 108px;
  transform: rotate(-14deg);
}

.paint-cluster span:nth-child(2) {
  top: 48px;
  left: 58px;
  width: 76px;
  height: 92px;
  background:
    radial-gradient(circle at 34% 26%, rgba(255, 255, 255, 0.58), transparent 24%),
    radial-gradient(circle at 56% 52%, rgba(201, 159, 199, 0.62), transparent 58%),
    rgba(214, 111, 154, 0.28);
  transform: rotate(10deg);
}

.paint-cluster span:nth-child(3) {
  top: 112px;
  left: 20px;
  width: 62px;
  height: 72px;
  background:
    radial-gradient(circle at 34% 26%, rgba(255, 255, 255, 0.58), transparent 24%),
    radial-gradient(circle at 56% 52%, rgba(232, 155, 111, 0.5), transparent 58%),
    rgba(239, 194, 214, 0.28);
  transform: rotate(-5deg);
}

.eyebrow {
  margin: 0 0 12px;
  color: #b76289;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2 {
  margin: 0;
  font-family: "Noto Serif SC", serif;
  font-weight: 500;
  line-height: 1.2;
}

h1 {
  max-width: 820px;
  font-size: clamp(38px, 4.65vw, 56px);
}

.hero-role-title {
  display: block;
  font-family: "Long Cang", "Noto Serif SC", serif;
  font-size: 1.18em;
  line-height: 1.15;
}

h1 em {
  font-style: normal;
}

h1 .title-product {
  color: #ce9d85;
}

h1 .title-story {
  color: #b07191;
}

.type-text {
  position: relative;
  display: inline-block;
  min-width: 4.2em;
  color: #b76289;
  text-shadow: 0 10px 28px rgba(214, 111, 154, 0.16);
}

.type-text::after {
  display: inline-block;
  width: 0.08em;
  height: 0.82em;
  margin-left: 0.08em;
  border-radius: 999px;
  background: linear-gradient(var(--rose), var(--peach));
  content: "";
  transform: translateY(0.09em);
  animation: blink 1s steps(2, end) infinite;
}

h2 {
  font-size: clamp(30px, 3.6vw, 46px);
}

h3 {
  margin: 0;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.45;
}

.hero-text {
  max-width: 700px;
  margin: 34px 0 0;
  color: #6f6268;
  font-family: "LXGW WenKai", "Noto Serif SC", serif;
  font-size: 19px;
  font-weight: 400;
  line-height: 1.85;
}

.hero-english,
.section-note,
.card-en,
.project-en {
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.hero-english {
  max-width: 610px;
  margin: 14px 0 0;
  color: #a48391;
  font-size: 15px;
  font-style: italic;
  font-weight: 400;
  line-height: 1.7;
}

.hero-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  max-width: 650px;
  margin-top: 26px;
}

.hero-highlights span {
  display: inline-flex;
  min-height: 36px;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.74);
  border-radius: 999px;
  padding: 8px 13px;
  color: rgba(86, 72, 84, 0.82);
  font-size: 13px;
  font-weight: 760;
  background:
    radial-gradient(circle at 28% 22%, rgba(255, 255, 255, 0.72), transparent 32%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.62), rgba(239, 194, 214, 0.2), rgba(201, 215, 210, 0.18));
  box-shadow: 0 12px 30px rgba(188, 129, 150, 0.08);
  backdrop-filter: blur(14px);
}

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

.button {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  max-width: 100%;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border: 1px solid rgba(255, 255, 255, 0.68);
  border-radius: 999px;
  font-weight: 700;
  overflow-wrap: anywhere;
  backdrop-filter: blur(14px);
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, border-color 180ms ease;
}

.button::before {
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  content: "";
  background: radial-gradient(circle at 30% 24%, rgba(255, 255, 255, 0.46), transparent 28%);
  opacity: 0.7;
  pointer-events: none;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(214, 111, 154, 0.17);
}

.button.primary {
  color: white;
  border-color: rgba(255, 255, 255, 0.72);
  background:
    radial-gradient(circle at 22% 18%, rgba(255, 255, 255, 0.5), transparent 30%),
    linear-gradient(135deg, rgba(222, 130, 169, 0.72), rgba(240, 177, 139, 0.68)),
    rgba(255, 255, 255, 0.2);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.36),
    0 14px 36px rgba(214, 111, 154, 0.16);
  animation: softBreath 4.8s ease-in-out infinite;
}

.button.secondary {
  color: #756872;
  background: rgba(255, 255, 255, 0.68);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

.hero-orbit {
  position: fixed;
  top: 50%;
  left: 50%;
  z-index: 4;
  width: min(600px, 78vw, 78vh);
  min-height: 0;
  aspect-ratio: 1;
  border-radius: 34px;
  overflow: visible;
  pointer-events: none;
  transform: translate(-50%, -50%) scale(1);
  transform-origin: top center;
  transform-style: preserve-3d;
  transition:
    top 920ms cubic-bezier(0.22, 1, 0.36, 1),
    left 920ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 920ms cubic-bezier(0.22, 1, 0.36, 1),
    opacity 620ms ease;
  will-change: top, left, transform, opacity;
}

.site-gated:not(.site-entered) .site-content {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.site-entered .site-content {
  animation: siteContentReveal 980ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.site-content {
  --content-ink: #2f2630;
  --content-body: #665d62;
  --content-english: #9a828d;
  --content-accent: #b07191;
}

.site-content h2 {
  color: var(--content-ink);
  font-family: "Noto Serif SC", serif;
  font-size: clamp(32px, 3.45vw, 44px);
  font-weight: 500;
  line-height: 1.24;
}

.site-content .soft-card h3,
.site-content .work-copy h3 {
  color: var(--content-ink);
  font-family: "Noto Sans SC", Inter, sans-serif;
  font-size: clamp(20px, 1.8vw, 23px);
  font-weight: 600;
  line-height: 1.48;
}

.site-content .prototype-copy h3 {
  color: var(--content-ink);
  font-family: "Noto Serif SC", serif;
  font-weight: 500;
}

.site-content .intro-band > p:last-child,
.site-content .soft-card p:not(.card-en),
.site-content .work-copy p:not(.tag):not(.project-en),
.site-content .prototype-copy p:not(.eyebrow),
.site-content .timeline p,
.site-content .contact-panel p {
  color: var(--content-body);
  font-family: "Noto Sans SC", Inter, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.85;
}

.site-content .section-note,
.site-content .soft-card .card-en,
.site-content .work-copy .project-en {
  color: var(--content-english);
  font-family: Inter, "Noto Sans SC", sans-serif;
  font-size: 14px;
  font-style: italic;
  font-weight: 400;
  line-height: 1.7;
}

.site-content .eyebrow,
.site-content .tag {
  color: var(--content-accent);
  font-family: Inter, "Noto Sans SC", sans-serif;
  font-size: 12px;
  font-weight: 600;
}

.site-content .project-process,
.site-content .prototype-docs span,
.site-content .timeline span {
  color: var(--content-accent);
  font-family: "Noto Sans SC", Inter, sans-serif;
  font-weight: 600;
}

.site-content .work-link {
  font-family: "Noto Sans SC", Inter, sans-serif;
  font-weight: 600;
}

.hero-docked .hero-orbit {
  top: 88px;
  left: calc(100vw - max(24px, calc((100vw - 1160px) / 2)) - 90px);
  opacity: 0.62;
  transform: translate(-50%, 0) scale(0.3);
}

.hero-orbit::before,
.hero-orbit::after {
  position: absolute;
  z-index: 1;
  inset: 8%;
  border: 1px solid rgba(201, 159, 199, 0.16);
  border-radius: 50%;
  content: "";
  opacity: 0;
  transition: opacity 720ms ease;
  animation: spin 26s linear infinite;
}

.bubble-revealed .hero-orbit::before,
.bubble-revealed .hero-orbit::after {
  opacity: 1;
}

.hero-orbit::after {
  inset: 20%;
  border-color: rgba(235, 161, 129, 0.13);
  animation-duration: 18s;
  animation-direction: reverse;
}

.hero-horizon-line {
  position: absolute;
  z-index: 2;
  top: 95.12%;
  left: calc(-100vw + 100%);
  right: -12vw;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(48, 42, 48, 0.48) 9%, rgba(48, 42, 48, 0.48) 92%, transparent);
  mix-blend-mode: multiply;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-0.5px) scaleX(0);
  transform-origin: 72% 50%;
}

.hero-orbit.is-visible .hero-horizon-line {
  animation: horizonDraw 1.12s 160ms cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.hero-scroll-indicator {
  position: absolute;
  z-index: 6;
  bottom: 8.5%;
  left: 50%;
  display: grid;
  width: 30px;
  height: 46px;
  place-items: center;
  border: 1px solid rgba(109, 80, 101, 0.24);
  border-radius: 999px;
  color: rgba(109, 80, 101, 0.78);
  background: rgba(255, 255, 255, 0.48);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.72),
    0 10px 30px rgba(177, 113, 153, 0.12);
  backdrop-filter: blur(12px);
  opacity: 0;
  visibility: hidden;
  transform: translateX(-50%);
  transition:
    opacity 420ms ease,
    visibility 0s 420ms,
    transform 420ms cubic-bezier(0.22, 1, 0.36, 1);
  animation: entryPulse 2.4s 1.2s ease-in-out infinite;
}

.hero-scroll-indicator span {
  position: absolute;
  top: 9px;
  width: 4px;
  height: 9px;
  border-radius: 999px;
  background: rgba(109, 80, 101, 0.58);
  animation: scrollCue 1.45s ease-in-out infinite;
}

.intro-ready:not(.bubble-revealed) .hero-orbit.is-visible .hero-scroll-indicator {
  opacity: 1;
  visibility: visible;
}

.bubble-revealed .hero-scroll-indicator {
  opacity: 0;
  visibility: hidden;
  transform: translateX(-50%) translateY(10px);
}

.orbit-card,
.planet {
  position: absolute;
  z-index: 5;
  border: 1px solid rgba(255, 255, 255, 0.76);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.color-bubble-overlay {
  position: absolute;
  z-index: 4;
  top: 5%;
  left: 3%;
  width: 84%;
  aspect-ratio: 1;
  border-radius: 50% 49% 52% 48% / 49% 51% 48% 52%;
  pointer-events: none;
  opacity: 0.36;
  mix-blend-mode: screen;
  background:
    radial-gradient(circle at 27% 24%, rgba(255, 255, 255, 0.92), transparent 10%),
    radial-gradient(circle at 72% 74%, rgba(255, 249, 212, 0.28), transparent 20%),
    radial-gradient(ellipse at 58% 42%, rgba(147, 235, 230, 0.24), transparent 36%),
    radial-gradient(ellipse at 35% 62%, rgba(236, 151, 226, 0.18), transparent 40%),
    radial-gradient(ellipse at 76% 24%, rgba(255, 154, 199, 0.16), transparent 28%),
    conic-gradient(
      from 230deg,
      rgba(255, 162, 218, 0.28),
      rgba(122, 232, 242, 0.28),
      rgba(195, 166, 246, 0.24),
      rgba(255, 230, 165, 0.24),
      rgba(255, 142, 190, 0.28)
    );
  box-shadow:
    inset 12px 15px 28px rgba(255, 255, 255, 0.5),
    inset -18px -24px 52px rgba(172, 114, 205, 0.08),
    inset 26px -18px 46px rgba(119, 229, 237, 0.08),
    0 18px 58px rgba(184, 128, 208, 0.06);
  filter: blur(0.2px) saturate(0.96);
  clip-path: circle(0 at 56% 84%);
  animation: artBreath 7s ease-in-out infinite;
  transition: clip-path 900ms 180ms cubic-bezier(0.22, 1, 0.36, 1);
}

.bubble-revealed .hero-orbit.is-visible .color-bubble-overlay {
  clip-path: circle(115% at 56% 84%);
}

.hero-docked .hero-horizon-line {
  animation: none;
  opacity: 0;
  transform: translateY(-0.5px) scaleX(1);
  transition: opacity 360ms ease;
}

.color-bubble-overlay::before {
  position: absolute;
  inset: 2.6%;
  border: 2px solid rgba(255, 255, 255, 0.42);
  border-left-color: rgba(103, 225, 241, 0.34);
  border-top-color: rgba(255, 174, 225, 0.36);
  border-right-color: rgba(255, 231, 169, 0.26);
  border-bottom-color: rgba(180, 139, 242, 0.3);
  border-radius: inherit;
  content: "";
  filter: blur(0.9px);
  box-shadow:
    inset 10px 10px 18px rgba(255, 255, 255, 0.32),
    inset -8px -10px 26px rgba(150, 83, 188, 0.06);
}

.bubble-girl-art {
  position: absolute;
  z-index: 3;
  right: -4%;
  bottom: -6%;
  width: min(620px, 105%);
  max-width: none;
  border-radius: 0;
  opacity: 0.82;
  filter: contrast(0.92);
  mix-blend-mode: multiply;
  pointer-events: none;
  box-shadow: none;
  clip-path: none;
}

.main-card {
  right: -5%;
  bottom: 1%;
  top: auto;
  left: auto;
  width: min(225px, 62vw);
  padding: 20px 22px;
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.68);
  transform: none;
  transition: transform 220ms ease;
}

.card-kicker,
.tag {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.main-card strong {
  display: block;
  margin-top: 6px;
  font-family: "Noto Serif SC", serif;
  font-size: 31px;
}

.main-card p {
  margin: 10px 0 0;
  color: var(--muted);
}

.planet {
  display: grid;
  width: 88px;
  height: 88px;
  place-items: center;
  border-radius: 999px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.68);
  color: rgba(255, 255, 255, 0.96);
  font-family: Inter, "Noto Sans SC", sans-serif;
  font-size: 14px;
  font-style: italic;
  font-weight: 500;
  letter-spacing: 0;
  text-shadow: 0 1px 12px rgba(76, 54, 72, 0.34);
  background:
    radial-gradient(circle at 30% 22%, rgba(255, 255, 255, 0.84), transparent 18%),
    radial-gradient(circle at 70% 74%, rgba(201, 215, 210, 0.2), transparent 36%),
    linear-gradient(145deg, rgba(239, 194, 214, 0.38), rgba(201, 159, 199, 0.26) 48%, rgba(201, 215, 210, 0.22));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.78),
    inset 0 -16px 26px rgba(255, 255, 255, 0.1),
    0 12px 30px rgba(137, 153, 190, 0.08),
    0 0 34px rgba(214, 111, 154, 0.1);
  backdrop-filter: blur(24px) saturate(1.18);
  opacity: 0;
  filter: blur(7px);
  transition:
    opacity 560ms var(--planet-delay, 900ms) ease,
    filter 680ms var(--planet-delay, 900ms) ease;
  animation: floaty 5s ease-in-out infinite;
}

.bubble-revealed .hero-orbit.is-visible .planet {
  opacity: 1;
  filter: blur(0);
}

.planet::before,
.planet::after {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  content: "";
}

.planet::before {
  border: 1px solid transparent;
  background:
    linear-gradient(rgba(255, 255, 255, 0.32), rgba(255, 255, 255, 0.04)) padding-box,
    conic-gradient(from 218deg, rgba(239, 194, 214, 0.46), rgba(255, 255, 255, 0.28), rgba(201, 159, 199, 0.38), rgba(232, 155, 111, 0.28), rgba(201, 215, 210, 0.38), rgba(239, 194, 214, 0.46)) border-box;
  opacity: 0.56;
}

.planet::after {
  inset: 11px 18px auto;
  height: 16px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.48), transparent);
  filter: blur(0.2px);
  opacity: 0.74;
}

.planet-a {
  --planet-delay: 820ms;
  top: 42px;
  left: 10%;
  border-color: rgba(239, 194, 214, 0.5);
  background:
    radial-gradient(circle at 30% 22%, rgba(255, 255, 255, 0.86), transparent 18%),
    radial-gradient(circle at 72% 72%, rgba(201, 215, 210, 0.24), transparent 36%),
    linear-gradient(145deg, rgba(239, 194, 214, 0.48), rgba(214, 111, 154, 0.28) 48%, rgba(201, 159, 199, 0.24));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.78),
    inset 0 -16px 26px rgba(255, 255, 255, 0.1),
    0 12px 30px rgba(137, 153, 190, 0.08),
    0 0 34px rgba(214, 111, 154, 0.12);
}

.planet-b {
  --planet-delay: 960ms;
  top: 18%;
  right: -2%;
  border-color: rgba(201, 159, 199, 0.5);
  background:
    radial-gradient(circle at 30% 22%, rgba(255, 255, 255, 0.84), transparent 18%),
    radial-gradient(circle at 72% 72%, rgba(201, 215, 210, 0.22), transparent 36%),
    linear-gradient(145deg, rgba(201, 159, 199, 0.44), rgba(239, 194, 214, 0.28) 48%, rgba(219, 230, 223, 0.22));
  animation-delay: -1s;
}

.planet-c {
  --planet-delay: 1100ms;
  right: 2%;
  bottom: 172px;
  border-color: rgba(214, 111, 154, 0.42);
  background:
    radial-gradient(circle at 30% 22%, rgba(255, 255, 255, 0.84), transparent 18%),
    radial-gradient(circle at 72% 72%, rgba(235, 161, 129, 0.22), transparent 36%),
    linear-gradient(145deg, rgba(214, 111, 154, 0.4), rgba(239, 194, 214, 0.28) 48%, rgba(201, 159, 199, 0.24));
  animation-delay: -2s;
}

.planet-d {
  --planet-delay: 1240ms;
  bottom: 12%;
  left: -4%;
  border-color: rgba(232, 155, 111, 0.44);
  background:
    radial-gradient(circle at 30% 22%, rgba(255, 255, 255, 0.84), transparent 18%),
    radial-gradient(circle at 72% 72%, rgba(239, 194, 214, 0.22), transparent 36%),
    linear-gradient(145deg, rgba(232, 155, 111, 0.38), rgba(235, 161, 129, 0.3) 48%, rgba(201, 215, 210, 0.24));
  animation-delay: -3s;
}

.section {
  padding: 72px 0;
}

.intro-band {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 42px;
  align-items: end;
  border-top: 0;
  border-bottom: 1px solid var(--line);
}

.intro-band > p:last-child {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.9;
}

.section-note {
  max-width: 620px;
  margin: 14px 0 0;
  color: rgba(142, 127, 134, 0.78);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.7;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px;
}

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

.soft-card,
.work-card,
.contact-panel {
  border: 1px solid rgba(255, 255, 255, 0.76);
  background: rgba(255, 255, 255, 0.66);
  box-shadow: 0 18px 50px rgba(74, 82, 118, 0.1);
  backdrop-filter: blur(16px);
}

.soft-card {
  min-height: 230px;
  padding: 24px;
  border-radius: 24px;
}

.soft-card p,
.work-copy p,
.timeline p,
.contact-panel p {
  color: var(--muted);
  line-height: 1.75;
}

.soft-card .card-en,
.work-copy .project-en {
  margin: 12px 0 8px;
  color: rgba(169, 79, 120, 0.78);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.55;
}

.work-copy .project-en {
  color: rgba(111, 94, 122, 0.78);
  font-style: italic;
}

.project-outcome {
  margin: 16px 0 13px;
}

.project-outcome strong {
  display: inline-block;
  margin-right: 8px;
  color: var(--content-accent);
  font-size: 12px;
  font-weight: 700;
}

.project-contributions {
  display: grid;
  gap: 7px;
  margin: 0 0 17px;
  padding: 0;
  color: var(--content-body);
  font-family: "Noto Sans SC", Inter, sans-serif;
  font-size: 14px;
  line-height: 1.55;
  list-style: none;
}

.project-contributions li {
  position: relative;
  padding-left: 16px;
}

.project-contributions li::before {
  position: absolute;
  top: 0.66em;
  left: 0;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--content-accent);
  content: "";
}

.project-process {
  display: flex;
  flex-wrap: wrap;
  gap: 7px 10px;
  margin: 16px 0 14px;
  color: rgba(119, 84, 105, 0.82);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.5;
}

.project-process span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  opacity: 0.68;
  transition:
    color 220ms ease,
    opacity 220ms ease,
    transform 220ms ease;
}

.project-process span:not(:last-child)::after {
  color: rgba(183, 98, 137, 0.48);
  content: "→";
}

.work-card:hover .project-process span {
  animation: processStep 520ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.work-card:hover .project-process span:nth-child(2) {
  animation-delay: 70ms;
}

.work-card:hover .project-process span:nth-child(3) {
  animation-delay: 140ms;
}

.work-card:hover .project-process span:nth-child(4) {
  animation-delay: 210ms;
}

.work-card:hover .project-process span:nth-child(5) {
  animation-delay: 280ms;
}

.work-card:hover .project-process span:nth-child(6) {
  animation-delay: 350ms;
}

.icon-dot {
  display: block;
  width: 42px;
  height: 42px;
  margin-bottom: 24px;
  border-radius: 15px;
  background:
    radial-gradient(circle at 30% 30%, white 0 14%, transparent 15%),
    linear-gradient(135deg, var(--violet), var(--cyan));
}

.icon-dot.blush {
  background:
    radial-gradient(circle at 30% 30%, white 0 14%, transparent 15%),
    linear-gradient(135deg, var(--rose), var(--sun));
}

.icon-dot.mint {
  background:
    radial-gradient(circle at 30% 30%, white 0 14%, transparent 15%),
    linear-gradient(135deg, var(--mint), var(--cyan));
}

.work-card {
  --media-x: 0px;
  --media-y: 0px;
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.work-card::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(105deg, transparent 20%, rgba(255, 255, 255, 0.36) 45%, transparent 68%);
  opacity: 0;
  transform: translateX(-120%);
  pointer-events: none;
}

.work-card:hover {
  transform: translateY(-7px);
  box-shadow: var(--shadow);
}

.work-card:hover::after {
  opacity: 1;
  animation: shimmer 920ms ease;
}

.work-visual {
  position: relative;
  display: grid;
  min-height: 210px;
  place-items: center;
  overflow: hidden;
  color: rgba(255, 255, 255, 0.92);
  font-size: 56px;
  font-weight: 800;
}

.work-visual span {
  position: relative;
  z-index: 2;
}

.work-visual.has-image {
  background: #264e7a;
}

.work-visual.has-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translate3d(var(--media-x), var(--media-y), 0) scale(1.035);
  transition:
    transform 380ms cubic-bezier(0.22, 1, 0.36, 1),
    filter 260ms ease;
  will-change: transform;
}

.work-card:hover .work-visual.has-image img {
  transform: translate3d(var(--media-x), var(--media-y), 0) scale(1.085);
  filter: saturate(1.04) contrast(1.02);
}

.work-visual.has-image span {
  position: absolute;
  top: 14px;
  left: 14px;
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: 16px;
  color: rgba(255, 255, 255, 0.94);
  background: rgba(21, 45, 79, 0.42);
  box-shadow: 0 12px 28px rgba(16, 35, 64, 0.18);
  font-size: 18px;
  backdrop-filter: blur(12px);
  transition:
    color 220ms ease,
    background 220ms ease,
    transform 260ms cubic-bezier(0.22, 1, 0.36, 1);
}

.work-visual.has-image span::after {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: rgba(255, 255, 255, 0);
  content: "↗";
  transform: translate(-5px, 5px);
  transition:
    color 220ms ease,
    transform 260ms cubic-bezier(0.22, 1, 0.36, 1);
}

.work-card:hover .work-visual.has-image span {
  color: transparent;
  background: rgba(21, 45, 79, 0.58);
  transform: rotate(-5deg);
}

.work-card:hover .work-visual.has-image span::after {
  color: rgba(255, 255, 255, 0.96);
  transform: translate(0, 0);
}

.work-visual.has-image::before,
.work-visual.has-image::after {
  display: none;
}

.work-visual::before,
.work-visual::after {
  position: absolute;
  content: "";
  border-radius: 47% 53% 58% 42% / 48% 42% 58% 52%;
  filter: blur(8px);
  opacity: 0.28;
}

.work-visual::before {
  top: 28px;
  left: 26px;
  width: 112px;
  height: 128px;
  background: rgba(255, 255, 255, 0.68);
}

.work-visual::after {
  right: 34px;
  bottom: 22px;
  width: 84px;
  height: 96px;
  background: rgba(255, 255, 255, 0.32);
}

.work-visual.lavender {
  background:
    radial-gradient(circle at 26% 70%, rgba(239, 194, 214, 0.42), transparent 22%),
    radial-gradient(circle at 72% 28%, rgba(255, 255, 255, 0.5), transparent 18%),
    linear-gradient(135deg, #c99fc7, #eba181);
}

.work-visual.rose {
  background:
    radial-gradient(circle at 68% 72%, rgba(201, 159, 199, 0.32), transparent 24%),
    radial-gradient(circle at 28% 35%, rgba(255, 255, 255, 0.58), transparent 18%),
    linear-gradient(135deg, #efc2d6, #e89b6f);
}

.work-visual.aqua {
  background:
    radial-gradient(circle at 30% 68%, rgba(214, 111, 154, 0.24), transparent 23%),
    radial-gradient(circle at 62% 30%, rgba(255, 255, 255, 0.58), transparent 18%),
    linear-gradient(135deg, #dbe6df, #c99fc7);
}

.work-copy {
  padding: 22px;
}

.work-copy .tag,
.work-copy h3 {
  transition: transform 260ms cubic-bezier(0.22, 1, 0.36, 1);
}

.work-card:hover .work-copy .tag {
  transform: translateY(-2px);
}

.work-card:hover .work-copy h3 {
  transform: translateY(-3px);
}

.work-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 18px 0;
}

.work-meta span {
  padding: 7px 10px;
  border: 1px solid rgba(214, 111, 154, 0.14);
  border-radius: 999px;
  color: #59637e;
  background: rgba(239, 194, 214, 0.18);
  font-size: 12px;
  font-weight: 700;
}

.work-link {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  padding: 9px 13px;
  border: 1px solid rgba(255, 255, 255, 0.66);
  border-radius: 999px;
  color: #a94f78;
  background:
    radial-gradient(circle at 30% 24%, rgba(255, 255, 255, 0.58), transparent 28%),
    linear-gradient(135deg, rgba(214, 111, 154, 0.16), rgba(235, 161, 129, 0.18));
  font-size: 14px;
  font-weight: 800;
  backdrop-filter: blur(12px);
  transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.work-link:hover {
  transform: translateY(-2px);
  background:
    radial-gradient(circle at 30% 24%, rgba(255, 255, 255, 0.66), transparent 28%),
    linear-gradient(135deg, rgba(214, 111, 154, 0.22), rgba(235, 161, 129, 0.24));
  box-shadow: 0 12px 26px rgba(214, 111, 154, 0.14);
}

.prototype-feature {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(420px, 1.22fr);
  gap: 42px;
  align-items: center;
  margin-top: 44px;
  padding: 46px 0 8px;
  border-top: 1px solid var(--line);
}

.prototype-copy {
  max-width: 430px;
}

.prototype-copy h3 {
  font-family: "Noto Serif SC", serif;
  font-size: clamp(28px, 2.8vw, 40px);
  line-height: 1.16;
}

.prototype-copy h3 span {
  display: block;
}

.care-continuum-feature .prototype-copy h3 {
  font-size: clamp(25px, 2.1vw, 32px);
  line-height: 1.22;
}

.prototype-copy p:not(.eyebrow) {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.82;
}

.prototype-copy .work-link {
  margin-top: 24px;
  color: #21625e;
  background:
    linear-gradient(135deg, rgba(17, 178, 164, 0.12), rgba(255, 255, 255, 0.66)),
    rgba(255, 255, 255, 0.68);
}

.prototype-links {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 24px;
}

.prototype-links .work-link {
  min-height: 36px;
  margin-top: 0;
  padding: 8px 13px;
  font-size: 13px;
}

.prototype-docs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 9px;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid rgba(17, 178, 164, 0.12);
}

.prototype-docs span {
  color: #526a67;
  font-size: 12px;
  font-weight: 800;
}

.prototype-docs .doc-link {
  color: #8d4571;
  background:
    linear-gradient(135deg, rgba(214, 111, 154, 0.12), rgba(255, 255, 255, 0.72)),
    rgba(255, 255, 255, 0.7);
}

.prototype-flow {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 7px;
  margin-top: 22px;
}

.prototype-flow::before,
.prototype-flow::after {
  position: absolute;
  z-index: 0;
  top: 50%;
  right: 8%;
  left: 8%;
  height: 2px;
  border-radius: 999px;
  content: "";
  transform: translateY(-50%);
  pointer-events: none;
}

.prototype-flow::before {
  background: rgba(17, 178, 164, 0.12);
}

.prototype-flow::after {
  background: linear-gradient(90deg, #13b8a9, #6fd6ff, #f0c66b);
  box-shadow: 0 0 16px rgba(19, 184, 169, 0.2);
  transform: translateY(-50%) scaleX(0);
  transform-origin: left center;
}

.prototype-flow span {
  --flow-delay: 260ms;
  position: relative;
  z-index: 1;
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 8px 7px;
  border: 1px solid rgba(17, 178, 164, 0.16);
  border-radius: 999px;
  color: #526a67;
  background: rgba(255, 255, 255, 0.64);
  font-size: 11px;
  font-weight: 800;
  line-height: 1.25;
  text-align: center;
  overflow-wrap: anywhere;
  box-shadow: 0 10px 28px rgba(17, 178, 164, 0.07);
  opacity: 0.42;
  transform: translateY(7px) scale(0.96);
}

.prototype-flow span::before {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: linear-gradient(135deg, #13b8a9, #6fd6ff);
  content: "";
  box-shadow: 0 0 14px rgba(19, 184, 169, 0.32);
  transform: scale(0.72);
}

.prototype-flow span:nth-child(2) {
  --flow-delay: 640ms;
}

.prototype-flow span:nth-child(3) {
  --flow-delay: 1020ms;
}

.prototype-flow span:nth-child(4) {
  --flow-delay: 1400ms;
}

.prototype-flow span:nth-child(5) {
  --flow-delay: 1780ms;
}

.care-continuum-feature.is-visible .prototype-flow::after {
  animation: flowTrace 2.15s 250ms cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.care-continuum-feature.is-visible .prototype-flow span {
  animation: flowStep 620ms var(--flow-delay) cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.care-continuum-feature.is-visible .prototype-flow span::before {
  animation: flowDot 620ms var(--flow-delay) cubic-bezier(0.22, 1, 0.36, 1) both;
}

.prototype-stage {
  --mx: 50%;
  --my: 50%;
  --tilt-x: 0deg;
  --tilt-y: 0deg;
  --clinical-cyan: #13b8a9;
  --clinical-blue: #6fd6ff;
  --clinical-amber: #f0c66b;
  --clinical-coral: #e97075;
  position: relative;
  min-height: 520px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 30px;
  background:
    linear-gradient(135deg, rgba(23, 29, 31, 0.98), rgba(33, 41, 43, 0.96) 48%, rgba(20, 28, 31, 0.98)),
    radial-gradient(ellipse at 22% 18%, rgba(19, 184, 169, 0.13), transparent 34%),
    radial-gradient(ellipse at 84% 72%, rgba(111, 214, 255, 0.1), transparent 36%);
  box-shadow: 0 24px 70px rgba(74, 82, 118, 0.15);
  isolation: isolate;
  perspective: 900px;
}

.prototype-stage::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background:
    radial-gradient(circle at var(--mx) var(--my), rgba(19, 184, 169, 0.14), transparent 25%),
    linear-gradient(rgba(190, 239, 233, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(190, 239, 233, 0.05) 1px, transparent 1px);
  background-size: auto, 34px 34px, 34px 34px;
  opacity: 0.86;
}

.stage-halo {
  position: absolute;
  inset: 12% 6% auto;
  height: 170px;
  border-radius: 44px;
  background:
    linear-gradient(100deg, transparent, rgba(19, 184, 169, 0.18), rgba(111, 214, 255, 0.12), rgba(240, 198, 107, 0.08), transparent);
  filter: blur(24px);
  opacity: 0.66;
  transform: rotate(-8deg);
}

.continuum-line {
  position: absolute;
  top: 58px;
  right: 48px;
  left: 48px;
  z-index: 2;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(19, 184, 169, 0.54), rgba(111, 214, 255, 0.3), rgba(240, 198, 107, 0.28), transparent);
}

.continuum-line::before {
  position: absolute;
  top: -1px;
  left: -18%;
  width: 18%;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.76), transparent);
  content: "";
  filter: blur(0.4px);
  animation: ribbonTrace 4.6s ease-in-out infinite;
}

.continuum-line span {
  position: absolute;
  top: 50%;
  width: 11px;
  height: 11px;
  border: 2px solid rgba(255, 255, 255, 0.66);
  border-radius: 999px;
  background: var(--clinical-cyan);
  box-shadow: 0 0 20px rgba(19, 184, 169, 0.38);
  transform: translate(-50%, -50%);
}

.continuum-line span:nth-child(1) {
  left: 12%;
}

.continuum-line span:nth-child(2) {
  left: 38%;
  background: var(--clinical-blue);
}

.continuum-line span:nth-child(3) {
  left: 66%;
  background: var(--clinical-amber);
}

.continuum-line span:nth-child(4) {
  left: 88%;
  background: var(--clinical-coral);
}

.prototype-board {
  position: absolute;
  left: 26px;
  bottom: 24px;
  z-index: 1;
  width: min(240px, 34%);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 18px;
  opacity: 0.44;
  filter: saturate(0.72) brightness(0.96);
  transform: rotate(-3deg);
  box-shadow: 0 18px 46px rgba(15, 16, 22, 0.28);
  animation: boardFloat 7s ease-in-out infinite;
}

.board-before {
  left: 30px;
  bottom: 24px;
  width: min(215px, 32%);
  opacity: 0.34;
}

.board-hospital {
  top: 112px;
  left: 32px;
  bottom: auto;
  width: 238px;
  height: 154px;
  max-width: none;
  object-fit: cover;
  object-position: center top;
  opacity: 0.36;
  transform: rotate(-2.4deg);
  animation-delay: -1.2s;
}

.board-after {
  top: 116px;
  right: 28px;
  bottom: auto;
  left: auto;
  width: 176px;
  height: 232px;
  max-width: none;
  object-fit: cover;
  object-position: center top;
  opacity: 0.28;
  transform: rotate(2.4deg);
  animation-delay: -2.4s;
}

.watch-board {
  position: absolute;
  right: 40px;
  bottom: 22px;
  z-index: 1;
  width: min(286px, 42%);
  height: 110px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 18px;
  object-fit: cover;
  object-position: left center;
  opacity: 0.32;
  filter: saturate(0.7) brightness(0.9);
  box-shadow: 0 18px 46px rgba(15, 16, 22, 0.24);
  transform: rotate(1.6deg);
  animation: boardFloat 7.4s ease-in-out infinite;
  animation-delay: -3s;
}

.flow-ribbon {
  position: absolute;
  top: 86px;
  right: 58px;
  left: 58px;
  z-index: 2;
  height: 2px;
  background: linear-gradient(90deg, rgba(19, 184, 169, 0.12), rgba(19, 184, 169, 0.62), rgba(240, 198, 107, 0.28));
  box-shadow: 0 0 22px rgba(19, 184, 169, 0.2);
}

.flow-ribbon::before {
  position: absolute;
  top: -2px;
  left: -12%;
  width: 24%;
  height: 6px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.9), transparent);
  content: "";
  filter: blur(1px);
  animation: ribbonTrace 3.8s ease-in-out infinite;
}

.flow-ribbon span {
  position: absolute;
  top: 50%;
  width: 12px;
  height: 12px;
  border: 2px solid rgba(255, 255, 255, 0.72);
  border-radius: 999px;
  background: var(--clinical-cyan);
  box-shadow: 0 0 22px rgba(19, 184, 169, 0.44);
  transform: translate(-50%, -50%);
  animation: pulsePoint 2.4s ease-in-out infinite;
}

.flow-ribbon span:nth-child(1) {
  left: 22%;
}

.flow-ribbon span:nth-child(2) {
  left: 52%;
  background: var(--clinical-blue);
  box-shadow: 0 0 22px rgba(111, 214, 255, 0.34);
  animation-delay: -0.7s;
}

.flow-ribbon span:nth-child(3) {
  left: 80%;
  background: var(--clinical-amber);
  box-shadow: 0 0 22px rgba(240, 198, 107, 0.32);
  animation-delay: -1.4s;
}

.care-continuum-stage {
  min-height: 560px;
}

.care-continuum-stage .flow-ribbon {
  top: 92px;
  opacity: 0.72;
}

.care-continuum-stage .scan-phone {
  top: 52%;
  left: 51%;
}

.selected-prototype-stage {
  min-height: 560px;
}

.selected-prototype-grid {
  position: absolute;
  inset: 36px;
  z-index: 4;
  display: grid;
  grid-template-columns: minmax(118px, 0.78fr) minmax(118px, 0.78fr) minmax(190px, 1.12fr);
  grid-template-rows: 1fr 1fr;
  gap: 16px;
}

.prototype-shot {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-width: 0;
  min-height: 0;
  margin: 0;
  padding: 10px;
  border: 1px solid rgba(190, 239, 233, 0.2);
  border-radius: 20px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02)),
    rgba(14, 22, 25, 0.72);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(16px);
  animation: cardFloat 6.4s ease-in-out infinite;
}

.prototype-shot::before {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  content: "";
  background: radial-gradient(circle at 50% 0%, rgba(19, 184, 169, 0.14), transparent 44%);
  opacity: 0.72;
  pointer-events: none;
}

.patient-login-shot,
.patient-ai-shot {
  grid-row: span 2;
}

.patient-ai-shot {
  animation-delay: -1.3s;
}

.watch-shot {
  grid-column: 3;
  grid-row: 1;
  animation-delay: -2.1s;
}

.desktop-shot {
  grid-column: 3;
  grid-row: 2;
  animation-delay: -3s;
}

.prototype-shot img {
  position: relative;
  z-index: 2;
  width: 100%;
  min-height: 0;
  flex: 1;
  border-radius: 14px;
  object-fit: contain;
  background: rgba(8, 15, 19, 0.5);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.18);
}

.prototype-shot figcaption {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 4px;
  padding: 10px 2px 1px;
}

.prototype-shot figcaption span {
  color: rgba(190, 239, 233, 0.62);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.prototype-shot figcaption strong {
  color: #f5fffd;
  font-size: 13px;
  line-height: 1.3;
}

.watch-shot img,
.desktop-shot img {
  object-fit: cover;
}

.care-empowerment-stage {
  min-height: 650px;
  background:
    radial-gradient(circle at 14% 16%, rgba(255, 238, 126, 0.16), transparent 24%),
    radial-gradient(circle at 28% 78%, rgba(255, 151, 169, 0.17), transparent 28%),
    radial-gradient(circle at 88% 28%, rgba(214, 86, 237, 0.12), transparent 26%),
    radial-gradient(circle at 78% 78%, rgba(72, 209, 228, 0.18), transparent 28%),
    linear-gradient(135deg, rgba(24, 29, 31, 0.98), rgba(40, 43, 46, 0.96) 50%, rgba(22, 30, 32, 0.98));
}

.care-empowerment-stage::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 34px 34px;
  mask-image: radial-gradient(circle at 52% 48%, black, transparent 74%);
}

.care-motion-path {
  position: absolute;
  top: 28px;
  right: 36px;
  left: 36px;
  z-index: 5;
  height: 54px;
}

.care-motion-path::before {
  position: absolute;
  top: 26px;
  right: 7%;
  left: 7%;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(255, 151, 169, 0.34), rgba(255, 238, 126, 0.34), rgba(72, 209, 228, 0.54), rgba(214, 86, 237, 0.24));
  box-shadow: 0 0 22px rgba(72, 209, 228, 0.2);
  content: "";
}

.care-motion-path::after {
  position: absolute;
  top: 21px;
  left: 2%;
  width: 16%;
  height: 12px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.84), transparent);
  content: "";
  filter: blur(1px);
  animation: careSignal 4.2s ease-in-out infinite;
}

.path-node {
  position: absolute;
  top: 9px;
  min-width: 74px;
  padding: 7px 9px;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 999px;
  color: rgba(246, 255, 253, 0.92);
  background: rgba(12, 18, 20, 0.72);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.2);
  font-size: 11px;
  font-weight: 900;
  text-align: center;
  transform: translateX(-50%);
  backdrop-filter: blur(14px);
}

.node-one {
  left: 8%;
}

.node-two {
  left: 36%;
}

.node-three {
  left: 64%;
}

.node-four {
  left: 91%;
}

.dental-tool-mark {
  position: absolute;
  right: 38px;
  bottom: 34px;
  z-index: 2;
  width: 210px;
  height: 170px;
  opacity: 0.16;
  pointer-events: none;
}

.dental-tool-mark::before {
  position: absolute;
  inset: 18px 58px 22px;
  border: 8px solid rgba(255, 151, 169, 0.68);
  border-top: 0;
  border-radius: 0 0 54px 54px;
  content: "";
  filter: blur(0.4px);
}

.dental-tool-mark::after {
  position: absolute;
  top: 4px;
  left: 62px;
  width: 74px;
  height: 70px;
  border: 7px solid rgba(97, 47, 20, 0.72);
  border-bottom: 0;
  border-radius: 42px 42px 0 0;
  content: "";
}

.dental-tool-mark span {
  position: absolute;
  top: 70px;
  width: 92px;
  height: 6px;
  border-radius: 999px;
  background: rgba(255, 151, 169, 0.64);
}

.dental-tool-mark span:first-child {
  left: 0;
  transform: rotate(18deg);
}

.dental-tool-mark span:last-child {
  right: 0;
  transform: rotate(-18deg);
}

.palette-swatch {
  position: absolute;
  top: 82px;
  left: 42px;
  z-index: 2;
  width: 168px;
  height: 132px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 26px;
  background:
    radial-gradient(circle at 18% 18%, rgba(255, 242, 112, 0.82), transparent 38%),
    radial-gradient(circle at 27% 76%, rgba(255, 142, 160, 0.72), transparent 42%),
    radial-gradient(circle at 82% 26%, rgba(218, 84, 235, 0.68), transparent 38%),
    radial-gradient(circle at 78% 78%, rgba(65, 211, 230, 0.74), transparent 42%);
  opacity: 0.2;
  filter: blur(0.2px) saturate(1.08);
}

.care-motion-board {
  position: absolute;
  inset: 82px 34px 30px;
  z-index: 4;
}

.care-motion-board::before {
  position: absolute;
  top: 45%;
  right: 8%;
  left: 8%;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(255, 151, 169, 0.28), rgba(72, 209, 228, 0.62), rgba(255, 238, 126, 0.32));
  content: "";
  box-shadow: 0 0 24px rgba(72, 209, 228, 0.18);
}

.care-motion-board::after {
  position: absolute;
  top: calc(45% - 4px);
  left: 5%;
  width: 10px;
  height: 10px;
  border: 2px solid rgba(255, 255, 255, 0.72);
  border-radius: 999px;
  background: #48d1e4;
  content: "";
  box-shadow: 0 0 22px rgba(72, 209, 228, 0.52);
  animation: careDataDot 4.2s ease-in-out infinite;
}

.motion-card {
  position: absolute;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  margin: 0;
  padding: 9px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 20px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.04)),
    rgba(15, 23, 26, 0.76);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(16px);
  animation: cardFloat 6.4s ease-in-out infinite;
}

.motion-card::before {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  content: "";
  background: radial-gradient(circle at 50% 0%, rgba(255, 151, 169, 0.14), transparent 44%);
  pointer-events: none;
}

.motion-card img {
  position: relative;
  z-index: 2;
  width: 100%;
  min-height: 0;
  flex: 1;
  border-radius: 15px;
  object-fit: contain;
  background: rgba(8, 15, 19, 0.56);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.18);
}

.motion-card figcaption {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 4px;
  padding: 9px 2px 1px;
}

.motion-card figcaption span,
.care-idea-card span {
  color: rgba(206, 247, 244, 0.68);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.motion-card figcaption strong,
.care-idea-card strong {
  color: #f8fffd;
  font-size: 12px;
  line-height: 1.3;
}

.entry-card {
  top: 132px;
  left: 6px;
  width: 122px;
  height: 244px;
  opacity: 0.9;
}

.upload-card {
  top: 40px;
  left: 208px;
  width: 182px;
  height: 420px;
  border-color: rgba(72, 209, 228, 0.34);
  box-shadow:
    0 24px 62px rgba(0, 0, 0, 0.34),
    0 0 42px rgba(72, 209, 228, 0.14);
}

.upload-scan {
  position: absolute;
  z-index: 4;
  top: 82px;
  bottom: 48px;
  left: 50%;
  width: 30px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(72, 209, 228, 0.38), rgba(255, 255, 255, 0.72), transparent);
  filter: blur(1px);
  transform: translateX(-90px) rotate(7deg);
  animation: uploadSweep 3s ease-in-out infinite;
  pointer-events: none;
}

.ai-card {
  top: 122px;
  right: 22px;
  width: 126px;
  height: 258px;
  animation-delay: -1s;
}

.watch-care-card {
  top: 0;
  right: 68px;
  width: 118px;
  height: 160px;
  animation-delay: -2s;
}

.watch-care-card img,
.desktop-care-card img {
  object-fit: cover;
}

.desktop-care-card {
  right: 0;
  bottom: 8px;
  width: 284px;
  height: 180px;
  animation-delay: -3s;
}

.care-idea-card {
  position: absolute;
  z-index: 5;
  display: grid;
  gap: 5px;
  padding: 14px 15px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.14);
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(16px);
  animation: cardFloat 5.8s ease-in-out infinite;
}

.therapy-idea {
  left: 18px;
  bottom: 104px;
  width: 184px;
  border-color: rgba(255, 238, 126, 0.26);
  animation-delay: -1.7s;
}

.support-idea {
  left: 34px;
  bottom: 20px;
  width: 198px;
  border-color: rgba(255, 151, 169, 0.26);
  animation-delay: -2.8s;
}

.portfolio-showcase-stage {
  min-height: 650px;
  overflow: hidden;
  border-color: rgba(255, 255, 255, 0.84);
  background:
    radial-gradient(circle at 16% 18%, rgba(255, 239, 121, 0.34), transparent 24%),
    radial-gradient(circle at 20% 82%, rgba(255, 143, 165, 0.28), transparent 28%),
    radial-gradient(circle at 88% 22%, rgba(217, 92, 235, 0.2), transparent 28%),
    radial-gradient(circle at 82% 76%, rgba(72, 209, 228, 0.3), transparent 28%),
    linear-gradient(135deg, #fffafa 0%, #f7fffe 48%, #fff9fb 100%);
  box-shadow: 0 24px 70px rgba(188, 129, 150, 0.13);
}

.portfolio-showcase-stage::before {
  background:
    radial-gradient(circle at var(--mx) var(--my), rgba(214, 86, 237, 0.08), transparent 24%),
    linear-gradient(rgba(91, 113, 160, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(91, 113, 160, 0.05) 1px, transparent 1px);
  background-size: auto, 34px 34px, 34px 34px;
  opacity: 0.82;
}

.portfolio-showcase-stage .stage-halo {
  inset: 10% 7% auto;
  height: 210px;
  background:
    linear-gradient(100deg, transparent, rgba(255, 143, 165, 0.18), rgba(255, 239, 121, 0.16), rgba(72, 209, 228, 0.18), transparent);
  opacity: 0.72;
  filter: blur(20px);
}

.portfolio-showcase-stage .care-motion-path {
  top: 24px;
}

.portfolio-showcase-stage .care-motion-path::before {
  background: linear-gradient(90deg, rgba(255, 143, 165, 0.42), rgba(255, 214, 97, 0.36), rgba(72, 209, 228, 0.5), rgba(217, 92, 235, 0.3));
  box-shadow: 0 0 18px rgba(72, 209, 228, 0.16);
}

.portfolio-showcase-stage .path-node {
  border-color: rgba(255, 255, 255, 0.88);
  color: rgba(47, 38, 48, 0.76);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 12px 28px rgba(188, 129, 150, 0.12);
}

.portfolio-showcase-stage .palette-swatch {
  top: 76px;
  left: 40px;
  width: 210px;
  height: 170px;
  border-color: rgba(255, 255, 255, 0.7);
  opacity: 0.28;
  box-shadow: 0 18px 42px rgba(188, 129, 150, 0.12);
}

.portfolio-showcase-stage .dental-tool-mark {
  right: 24px;
  bottom: 20px;
  opacity: 0.13;
}

.portfolio-showcase-stage .care-motion-board {
  inset: 78px 28px 28px;
}

.portfolio-showcase-stage .care-motion-board::before {
  top: 49%;
  right: 8%;
  left: 8%;
  height: 2px;
  background: linear-gradient(90deg, rgba(255, 143, 165, 0.36), rgba(72, 209, 228, 0.42), rgba(217, 92, 235, 0.22));
  box-shadow: 0 0 18px rgba(72, 209, 228, 0.12);
}

.portfolio-showcase-stage .care-motion-board::after {
  top: calc(49% - 4px);
  background: #ff8fa5;
  box-shadow: 0 0 20px rgba(255, 143, 165, 0.42);
}

.portfolio-showcase-stage .motion-card {
  --tilt: 0deg;
  border-color: rgba(255, 255, 255, 0.86);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0.74)),
    rgba(255, 255, 255, 0.78);
  box-shadow:
    0 18px 42px rgba(83, 64, 77, 0.13),
    0 1px 0 rgba(255, 255, 255, 0.8) inset;
  transform: rotate(var(--tilt));
  animation-name: posterFloat;
}

.portfolio-showcase-stage .motion-card::before {
  background:
    radial-gradient(circle at 22% 0%, rgba(255, 143, 165, 0.18), transparent 36%),
    radial-gradient(circle at 86% 0%, rgba(72, 209, 228, 0.16), transparent 38%);
}

.portfolio-showcase-stage .motion-card img {
  background: rgba(250, 250, 250, 0.7);
  box-shadow: 0 10px 24px rgba(83, 64, 77, 0.08);
}

.portfolio-showcase-stage .motion-card figcaption span,
.portfolio-showcase-stage .care-idea-card span {
  color: rgba(169, 79, 120, 0.72);
}

.portfolio-showcase-stage .motion-card figcaption strong,
.portfolio-showcase-stage .care-idea-card strong {
  color: #3b333a;
}

.portfolio-showcase-stage .entry-card {
  top: 112px;
  left: 18px;
  width: 118px;
  height: 236px;
  --tilt: -4deg;
}

.portfolio-showcase-stage .upload-card {
  top: 42px;
  left: 198px;
  width: 184px;
  height: 420px;
  --tilt: 1.5deg;
  border-color: rgba(72, 209, 228, 0.38);
}

.portfolio-showcase-stage .ai-card {
  top: 138px;
  right: 34px;
  width: 116px;
  height: 240px;
  --tilt: 3deg;
}

.followup-showcase-card {
  top: 318px;
  left: 74px;
  width: 120px;
  height: 220px;
  animation-delay: -1.6s;
}

.community-showcase-card {
  right: 142px;
  bottom: 10px;
  width: 120px;
  height: 220px;
  animation-delay: -2.2s;
}

.portfolio-showcase-stage .watch-care-card {
  top: 22px;
  right: 150px;
  width: 124px;
  height: 152px;
  --tilt: -3deg;
}

.portfolio-showcase-stage .desktop-care-card {
  right: 12px;
  bottom: 0;
  width: 252px;
  height: 166px;
  --tilt: 2deg;
}

.portfolio-showcase-stage .care-idea-card {
  border-color: rgba(255, 255, 255, 0.82);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 14px 34px rgba(83, 64, 77, 0.1);
}

.portfolio-showcase-stage .therapy-idea {
  left: 14px;
  bottom: 20px;
  width: 180px;
}

.portfolio-showcase-stage .support-idea {
  top: 214px;
  right: 126px;
  bottom: auto;
  left: auto;
  width: 172px;
}

.portfolio-showcase-stage .upload-scan {
  background: linear-gradient(90deg, transparent, rgba(72, 209, 228, 0.28), rgba(255, 255, 255, 0.84), rgba(255, 143, 165, 0.18), transparent);
}

.prototype-demo-stage {
  min-height: 690px;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  gap: 16px;
  padding: 22px;
  overflow: hidden;
  border-color: rgba(255, 255, 255, 0.9);
  background:
    linear-gradient(115deg, rgba(255, 246, 250, 0.96), rgba(245, 255, 253, 0.94) 48%, rgba(252, 247, 255, 0.96)),
    linear-gradient(135deg, rgba(255, 145, 174, 0.22), rgba(255, 235, 132, 0.14) 36%, rgba(81, 212, 226, 0.2) 72%, rgba(219, 110, 236, 0.13));
  box-shadow:
    0 24px 70px rgba(150, 103, 128, 0.13),
    0 1px 0 rgba(255, 255, 255, 0.9) inset;
}

.prototype-demo-stage::before {
  background:
    radial-gradient(circle at var(--mx) var(--my), rgba(255, 255, 255, 0.48), transparent 24%),
    linear-gradient(rgba(81, 96, 126, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(81, 96, 126, 0.045) 1px, transparent 1px);
  background-size: auto, 32px 32px, 32px 32px;
  opacity: 0.76;
}

.demo-wash {
  position: absolute;
  z-index: -1;
  height: 190px;
  pointer-events: none;
  filter: blur(24px);
  opacity: 0.62;
}

.demo-wash-a {
  top: 44px;
  right: -74px;
  width: 62%;
  background: linear-gradient(100deg, rgba(255, 145, 174, 0), rgba(255, 145, 174, 0.34), rgba(81, 212, 226, 0.2), rgba(81, 212, 226, 0));
  transform: rotate(-10deg);
}

.demo-wash-b {
  left: -92px;
  bottom: 76px;
  width: 58%;
  background: linear-gradient(90deg, rgba(255, 236, 132, 0), rgba(255, 236, 132, 0.28), rgba(219, 110, 236, 0.16), rgba(219, 110, 236, 0));
  transform: rotate(11deg);
}

.demo-meta {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  color: #493f49;
}

.demo-meta span {
  color: rgba(169, 79, 120, 0.78);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.demo-meta strong {
  font-size: 14px;
  font-weight: 900;
}

.demo-viewer {
  position: relative;
  z-index: 2;
  min-height: 0;
  border: 1px solid rgba(255, 255, 255, 0.88);
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(255, 255, 255, 0.64)),
    rgba(255, 255, 255, 0.72);
  box-shadow:
    0 22px 54px rgba(94, 72, 88, 0.12),
    0 1px 0 rgba(255, 255, 255, 0.88) inset;
  backdrop-filter: blur(18px);
  overflow: hidden;
}

.demo-viewer::before {
  position: absolute;
  top: 14px;
  left: 16px;
  z-index: 4;
  width: 44px;
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(90deg, #ff8fae 0 24%, #ffe881 24% 49%, #51d4e2 49% 74%, #db6eec 74% 100%);
  content: "";
  box-shadow: 0 8px 22px rgba(255, 143, 174, 0.18);
}

.demo-video-viewer {
  display: grid;
  min-height: 596px;
  place-items: center;
  padding: 14px;
}

.demo-video {
  position: relative;
  z-index: 2;
  display: block;
  width: 100%;
  height: 100%;
  max-height: 636px;
  border: 1px solid rgba(78, 64, 76, 0.08);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 18px 44px rgba(82, 67, 80, 0.14);
  object-fit: contain;
}

.demo-video-shine {
  position: absolute;
  inset: 14px;
  z-index: 1;
  border-radius: 22px;
  pointer-events: none;
  background:
    radial-gradient(circle at 18% 16%, rgba(255, 255, 255, 0.58), transparent 28%),
    radial-gradient(circle at 84% 78%, rgba(81, 212, 226, 0.16), transparent 32%),
    radial-gradient(circle at 30% 86%, rgba(255, 143, 174, 0.16), transparent 34%);
}

.demo-screen-stack {
  position: relative;
  height: 100%;
  min-height: 512px;
}

.demo-screen {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  gap: 12px;
  margin: 0;
  padding: 36px 20px 18px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(18px) scale(0.965);
  transition:
    opacity 620ms ease,
    transform 720ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.demo-screen.is-active {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.demo-screen img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: contain;
  border: 1px solid rgba(78, 64, 76, 0.08);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.74);
  box-shadow: 0 18px 44px rgba(82, 67, 80, 0.14);
}

.demo-screen.is-active img {
  animation: demoImageBreath 6.2s ease-in-out infinite;
}

.demo-screen figcaption {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 14px;
  color: #3d343d;
}

.demo-screen figcaption span {
  color: rgba(169, 79, 120, 0.72);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.demo-screen figcaption strong {
  font-size: 15px;
  font-weight: 900;
  text-align: right;
}

.demo-scanline {
  position: absolute;
  top: 34px;
  right: 22px;
  bottom: 62px;
  z-index: 3;
  width: 2px;
  border-radius: 999px;
  background: linear-gradient(180deg, transparent, rgba(255, 143, 174, 0.6), rgba(81, 212, 226, 0.58), transparent);
  box-shadow: 0 0 18px rgba(81, 212, 226, 0.24);
  opacity: 0.6;
  animation: demoScan 4.8s ease-in-out infinite;
}

.demo-controls {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.demo-controls button {
  min-width: 0;
  min-height: 76px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  column-gap: 9px;
  row-gap: 2px;
  align-items: center;
  padding: 12px 11px;
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: 18px;
  color: #514853;
  background: rgba(255, 255, 255, 0.62);
  box-shadow: 0 12px 30px rgba(94, 72, 88, 0.08);
  cursor: pointer;
  backdrop-filter: blur(14px);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.demo-controls button:hover,
.demo-controls button.is-active {
  transform: translateY(-2px);
  border-color: rgba(255, 143, 174, 0.48);
  background:
    linear-gradient(135deg, rgba(255, 143, 174, 0.2), rgba(81, 212, 226, 0.14)),
    rgba(255, 255, 255, 0.78);
  box-shadow: 0 16px 36px rgba(169, 79, 120, 0.13);
}

.demo-controls button span {
  grid-row: span 2;
  width: 32px;
  height: 32px;
  display: inline-grid;
  place-items: center;
  border-radius: 999px;
  color: #a94f78;
  background: rgba(255, 255, 255, 0.86);
  font-size: 12px;
  font-weight: 900;
}

.demo-controls button strong,
.demo-controls button small {
  min-width: 0;
  overflow: hidden;
  text-align: left;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.demo-controls button strong {
  font-size: 12px;
  font-weight: 900;
}

.demo-controls button small {
  color: rgba(82, 73, 85, 0.62);
  font-size: 11px;
  font-weight: 800;
}

@keyframes demoImageBreath {
  0%,
  100% {
    transform: translateY(0) scale(1);
  }

  50% {
    transform: translateY(-4px) scale(1.012);
  }
}

@keyframes demoScan {
  0%,
  100% {
    transform: translateX(0);
    opacity: 0.28;
  }

  50% {
    transform: translateX(-20px);
    opacity: 0.72;
  }
}

.scan-phone {
  position: absolute;
  top: 51%;
  left: 52%;
  z-index: 4;
  width: 238px;
  height: 476px;
  padding: 14px 13px 15px;
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: 36px;
  background:
    linear-gradient(145deg, rgba(252, 255, 254, 0.99), rgba(239, 249, 248, 0.98)),
    #fff;
  box-shadow:
    inset 0 0 0 7px rgba(45, 42, 48, 0.92),
    inset 0 0 0 8px rgba(255, 255, 255, 0.32),
    0 26px 72px rgba(0, 0, 0, 0.3),
    0 0 48px rgba(19, 184, 169, 0.14);
  transform: translate(-50%, -50%) rotateX(var(--tilt-x)) rotateY(var(--tilt-y));
  transition: transform 160ms ease;
  animation: scanPhoneGlow 5s ease-in-out infinite;
}

.clinical-panel,
.followup-panel,
.watch-device {
  position: absolute;
  z-index: 5;
  border: 1px solid rgba(190, 239, 233, 0.22);
  color: #dff7f4;
  background: rgba(18, 28, 31, 0.74);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(18px);
}

.clinical-panel {
  top: 272px;
  left: 38px;
  width: 188px;
  padding: 16px;
  border-radius: 18px;
}

.clinical-panel > span,
.followup-panel > span {
  display: block;
  color: rgba(190, 239, 233, 0.62);
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
}

.clinical-panel strong,
.followup-panel strong {
  display: block;
  margin-top: 7px;
  font-size: 14px;
  line-height: 1.35;
}

.clinical-row {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  margin-top: 12px;
  color: rgba(223, 247, 244, 0.78);
  font-size: 11px;
  font-weight: 800;
}

.clinical-row i {
  height: 6px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--clinical-coral), var(--clinical-cyan));
  box-shadow: 0 0 18px rgba(19, 184, 169, 0.22);
}

.clinical-row:nth-child(4) i {
  background: linear-gradient(90deg, var(--clinical-amber), var(--clinical-blue));
}

.followup-panel {
  right: 36px;
  bottom: 158px;
  width: 178px;
  padding: 15px;
  border-radius: 18px;
}

.adherence-bars {
  display: flex;
  align-items: end;
  gap: 6px;
  height: 50px;
  margin-top: 13px;
}

.adherence-bars i {
  flex: 1;
  border-radius: 999px 999px 4px 4px;
  background: linear-gradient(180deg, var(--clinical-cyan), rgba(19, 184, 169, 0.18));
  box-shadow: 0 0 16px rgba(19, 184, 169, 0.18);
  animation: barBreathe 3.2s ease-in-out infinite;
}

.adherence-bars i:nth-child(1) {
  height: 54%;
}

.adherence-bars i:nth-child(2) {
  height: 72%;
  animation-delay: -0.4s;
}

.adherence-bars i:nth-child(3) {
  height: 86%;
  animation-delay: -0.8s;
}

.adherence-bars i:nth-child(4) {
  height: 68%;
  animation-delay: -1.2s;
}

.adherence-bars i:nth-child(5) {
  height: 92%;
  animation-delay: -1.6s;
}

.watch-device {
  top: 122px;
  right: 48px;
  display: grid;
  width: 110px;
  height: 128px;
  place-items: center;
  padding: 13px;
  border: 5px solid rgba(5, 10, 15, 0.9);
  border-radius: 26px;
  text-align: center;
  background:
    radial-gradient(circle at 50% 58%, rgba(19, 184, 169, 0.16), transparent 34%),
    rgba(11, 16, 22, 0.92);
  animation: watchPing 4.4s ease-in-out infinite;
}

.watch-device span,
.watch-device strong {
  position: relative;
  z-index: 2;
}

.watch-device span {
  color: rgba(255, 255, 255, 0.7);
  font-size: 11px;
  font-weight: 900;
}

.watch-device strong {
  color: #f6fffd;
  font-size: 13px;
  line-height: 1.25;
}

.watch-device i {
  position: absolute;
  inset: 34px;
  border: 2px solid rgba(19, 184, 169, 0.4);
  border-radius: 999px;
  opacity: 0.76;
  animation: watchSignal 2.6s ease-in-out infinite;
}

.phone-speaker {
  position: absolute;
  top: 14px;
  left: 50%;
  z-index: 3;
  width: 82px;
  height: 24px;
  border-radius: 0 0 15px 15px;
  background: #17151a;
  transform: translateX(-50%);
}

.phone-status {
  display: flex;
  justify-content: space-between;
  padding: 18px 12px 10px;
  color: #404d4c;
  font-size: 11px;
  font-weight: 800;
}

.scan-screen {
  position: relative;
  height: calc(100% - 43px);
  overflow: hidden;
  border-radius: 25px;
  padding: 18px 15px;
  background:
    radial-gradient(circle at 50% 11%, rgba(19, 184, 169, 0.13), transparent 25%),
    linear-gradient(180deg, #f8fffe, #eef9f7 58%, #f9fcfb);
}

.scan-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: #253737;
  font-size: 14px;
  font-weight: 900;
}

.scan-title strong {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 6px solid rgba(19, 184, 169, 0.2);
  border-top-color: var(--clinical-cyan);
  border-radius: 999px;
  color: #197b73;
  font-size: 16px;
  background: rgba(255, 255, 255, 0.74);
}

.mouth-card {
  position: relative;
  height: 154px;
  margin-top: 20px;
  overflow: hidden;
  border: 1px solid rgba(19, 184, 169, 0.18);
  border-radius: 24px;
  background:
    radial-gradient(ellipse at 50% 60%, rgba(233, 112, 117, 0.14), transparent 42%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.84), rgba(232, 247, 245, 0.78));
  box-shadow: inset 0 0 30px rgba(255, 255, 255, 0.64);
}

.mouth-line {
  position: absolute;
  left: 50%;
  width: 118px;
  height: 54px;
  border: 4px solid rgba(233, 112, 117, 0.62);
  border-right-color: transparent;
  border-left-color: transparent;
  border-radius: 50%;
  transform: translateX(-50%);
}

.mouth-line.top {
  top: 42px;
  border-bottom: 0;
}

.mouth-line.bottom {
  top: 68px;
  border-top: 0;
}

.gum-zone {
  position: absolute;
  top: 66px;
  left: 50%;
  width: 86px;
  height: 28px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(233, 112, 117, 0.3), rgba(255, 201, 201, 0.56), rgba(233, 112, 117, 0.3));
  filter: blur(1px);
  transform: translateX(-50%);
}

.scan-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(19, 184, 169, 0.14) 1px, transparent 1px),
    linear-gradient(90deg, rgba(19, 184, 169, 0.12) 1px, transparent 1px);
  background-size: 20px 20px;
  mask-image: radial-gradient(circle at 50% 54%, black, transparent 68%);
}

.scan-beam {
  position: absolute;
  top: -12%;
  bottom: -12%;
  left: 8%;
  width: 32px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(19, 184, 169, 0.38), rgba(255, 255, 255, 0.74), rgba(111, 214, 255, 0.26), transparent);
  filter: blur(1px);
  transform: translateX(-40px) rotate(7deg);
  animation: scanSweep 2.8s ease-in-out infinite;
}

.scan-dot {
  position: absolute;
  width: 13px;
  height: 13px;
  border: 2px solid rgba(255, 255, 255, 0.84);
  border-radius: 999px;
  background: var(--clinical-coral);
  box-shadow: 0 0 18px rgba(233, 112, 117, 0.42);
  animation: pulsePoint 2.2s ease-in-out infinite;
}

.dot-a {
  top: 52px;
  left: 62px;
}

.dot-b {
  top: 76px;
  right: 54px;
  background: var(--clinical-cyan);
  box-shadow: 0 0 18px rgba(19, 184, 169, 0.5);
  animation-delay: -0.65s;
}

.dot-c {
  right: 78px;
  bottom: 42px;
  background: var(--clinical-amber);
  box-shadow: 0 0 18px rgba(240, 198, 107, 0.4);
  animation-delay: -1.25s;
}

.result-stack {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.result-stack span {
  position: relative;
  min-height: 42px;
  padding: 13px 12px 12px 37px;
  border: 1px solid rgba(19, 184, 169, 0.13);
  border-radius: 15px;
  color: #4e6260;
  background: rgba(255, 255, 255, 0.68);
  font-size: 12px;
  font-weight: 800;
  box-shadow: 0 10px 24px rgba(73, 91, 102, 0.07);
  animation: resultPulse 4.2s ease-in-out infinite;
}

.result-stack span:nth-child(2) {
  animation-delay: -1s;
}

.result-stack span:nth-child(3) {
  animation-delay: -2s;
}

.result-stack span::before {
  position: absolute;
  top: 50%;
  left: 13px;
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--clinical-coral), var(--clinical-cyan));
  content: "";
  transform: translateY(-50%);
}

.insight-card {
  position: absolute;
  z-index: 5;
  min-width: 162px;
  padding: 15px 16px;
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(16px);
  animation: cardFloat 5.6s ease-in-out infinite;
}

.insight-card span {
  display: block;
  color: #667c7a;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.insight-card strong {
  display: block;
  margin-top: 6px;
  color: #263b3a;
  font-size: 14px;
}

.card-one {
  top: 142px;
  left: 56px;
}

.card-two {
  right: 44px;
  bottom: 72px;
  animation-delay: -1.9s;
}

.timeline {
  display: grid;
  gap: 16px;
}

.timeline article {
  display: grid;
  grid-template-columns: 120px minmax(0, 0.4fr) minmax(0, 1fr);
  gap: 22px;
  align-items: baseline;
  padding: 24px 0;
  border-top: 1px solid var(--line);
}

.timeline span {
  color: #8a6bd8;
  font-weight: 800;
}

.timeline p {
  margin: 0;
}

.contact-panel {
  margin-bottom: 70px;
  padding: 42px;
  border-radius: 30px;
}

.contact-panel h2 {
  max-width: 820px;
}

[data-reveal] {
  --reveal-x: 0;
  --reveal-y: 34px;
  --reveal-scale: 1;
  --reveal-delay: 0ms;
  opacity: 0;
  transform: translate3d(var(--reveal-x), var(--reveal-y), 0) scale(var(--reveal-scale));
  transition:
    opacity 820ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 820ms cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--reveal-delay);
  will-change: opacity, transform;
}

[data-motion="left"] {
  --reveal-x: -46px;
  --reveal-y: 10px;
}

[data-motion="right"] {
  --reveal-x: 46px;
  --reveal-y: 10px;
}

[data-motion="down"] {
  --reveal-y: -22px;
}

[data-motion="project"] {
  --reveal-y: 72px;
  --reveal-scale: 0.975;
}

[data-motion="timeline"] {
  --reveal-x: 34px;
  --reveal-y: 0;
}

[data-stagger="1"] {
  --reveal-delay: 110ms;
}

[data-stagger="2"] {
  --reveal-delay: 220ms;
}

[data-stagger="3"] {
  --reveal-delay: 330ms;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
}

.work-card[data-reveal] .work-visual,
.work-card[data-reveal] .work-copy {
  transform: translateY(18px);
  transition: transform 760ms cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: calc(var(--reveal-delay) + 120ms);
}

.work-card[data-reveal].is-visible .work-visual,
.work-card[data-reveal].is-visible .work-copy {
  transform: translateY(0);
}

body .site-header.is-hidden {
  opacity: 0;
  transform: translate3d(-50%, -110%, 0);
  pointer-events: none;
}

@keyframes siteContentReveal {
  0% {
    opacity: 0;
    transform: translateY(64px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes entryPulse {
  0%,
  100% {
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.72),
      0 10px 30px rgba(177, 113, 153, 0.12),
      0 0 0 0 rgba(214, 111, 154, 0);
  }
  50% {
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.82),
      0 14px 36px rgba(177, 113, 153, 0.18),
      0 0 0 10px rgba(214, 111, 154, 0.07);
  }
}

@keyframes scrollCue {
  0% {
    opacity: 0;
    transform: translateY(0);
  }
  24% {
    opacity: 0.76;
  }
  78% {
    opacity: 0.16;
  }
  100% {
    opacity: 0;
    transform: translateY(17px);
  }
}

@keyframes bubbleRelease {
  0% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  42% {
    transform: translate3d(0, -6px, 0) scale(1.045);
    filter: blur(0) saturate(1.08);
  }
  100% {
    transform: translate3d(0, 0, 0) scale(1);
    filter: blur(0.2px) saturate(0.96);
  }
}

@keyframes horizonDraw {
  0% {
    opacity: 0;
    transform: translateY(-0.5px) scaleX(0);
  }
  16% {
    opacity: 0.78;
  }
  100% {
    opacity: 0.78;
    transform: translateY(-0.5px) scaleX(1);
  }
}

@keyframes processStep {
  0% {
    color: rgba(119, 84, 105, 0.5);
    opacity: 0.55;
    transform: translateY(3px);
  }
  60% {
    color: #a94f78;
    opacity: 1;
    transform: translateY(-2px);
  }
  100% {
    color: rgba(119, 84, 105, 0.9);
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes flowTrace {
  to {
    transform: translateY(-50%) scaleX(1);
  }
}

@keyframes flowStep {
  0% {
    opacity: 0.42;
    transform: translateY(7px) scale(0.96);
  }
  62% {
    border-color: rgba(19, 184, 169, 0.42);
    color: #21625e;
    background: rgba(240, 255, 252, 0.96);
    box-shadow: 0 12px 30px rgba(17, 178, 164, 0.16);
    opacity: 1;
    transform: translateY(-3px) scale(1.02);
  }
  100% {
    border-color: rgba(17, 178, 164, 0.24);
    color: #315f5b;
    background: rgba(255, 255, 255, 0.88);
    box-shadow: 0 10px 28px rgba(17, 178, 164, 0.1);
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes flowDot {
  0% {
    box-shadow: 0 0 0 rgba(19, 184, 169, 0);
    transform: scale(0.72);
  }
  58% {
    box-shadow: 0 0 0 7px rgba(19, 184, 169, 0.14), 0 0 18px rgba(19, 184, 169, 0.36);
    transform: scale(1.35);
  }
  100% {
    box-shadow: 0 0 14px rgba(19, 184, 169, 0.32);
    transform: scale(1);
  }
}

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

@keyframes floaty {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-14px);
  }
}

@keyframes softBreath {
  0%,
  100% {
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.36),
      0 14px 36px rgba(214, 111, 154, 0.14);
    filter: saturate(1);
  }
  50% {
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.48),
      0 18px 44px rgba(235, 161, 129, 0.22);
    filter: saturate(1.06);
  }
}

@keyframes artBreath {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
    opacity: 0.88;
  }
  50% {
    transform: translate3d(0, -10px, 0) scale(1.015);
    opacity: 0.98;
  }
}

@keyframes shimmer {
  to {
    transform: translateX(120%);
  }
}

@keyframes ribbonTrace {
  0% {
    transform: translateX(0);
    opacity: 0;
  }
  18%,
  82% {
    opacity: 1;
  }
  100% {
    transform: translateX(520%);
    opacity: 0;
  }
}

@keyframes pulsePoint {
  0%,
  100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.78;
  }
  50% {
    transform: translate(-50%, -50%) scale(1.36);
    opacity: 1;
  }
}

@keyframes boardFloat {
  0%,
  100% {
    transform: translateY(0) rotate(-3deg);
  }
  50% {
    transform: translateY(-10px) rotate(-2deg);
  }
}

@keyframes scanPhoneGlow {
  0%,
  100% {
    box-shadow:
      inset 0 0 0 7px rgba(45, 42, 48, 0.92),
      inset 0 0 0 8px rgba(255, 255, 255, 0.32),
      0 26px 72px rgba(0, 0, 0, 0.3),
      0 0 48px rgba(19, 184, 169, 0.14);
  }
  50% {
    box-shadow:
      inset 0 0 0 7px rgba(45, 42, 48, 0.92),
      inset 0 0 0 8px rgba(255, 255, 255, 0.36),
      0 30px 82px rgba(0, 0, 0, 0.34),
      0 0 64px rgba(111, 214, 255, 0.18);
  }
}

@keyframes scanSweep {
  0% {
    transform: translateX(-42px) rotate(7deg);
    opacity: 0;
  }
  18%,
  82% {
    opacity: 1;
  }
  100% {
    transform: translateX(176px) rotate(7deg);
    opacity: 0;
  }
}

@keyframes resultPulse {
  0%,
  100% {
    transform: translateX(0);
    border-color: rgba(19, 184, 169, 0.12);
  }
  50% {
    transform: translateX(4px);
    border-color: rgba(240, 198, 107, 0.24);
  }
}

@keyframes cardFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
}

@keyframes posterFloat {
  0%,
  100% {
    transform: translateY(0) rotate(var(--tilt));
  }
  50% {
    transform: translateY(-10px) rotate(var(--tilt));
  }
}

@keyframes careSignal {
  0% {
    transform: translateX(0);
    opacity: 0;
  }
  16%,
  84% {
    opacity: 1;
  }
  100% {
    transform: translateX(560%);
    opacity: 0;
  }
}

@keyframes careDataDot {
  0% {
    transform: translateX(0) scale(0.8);
    opacity: 0;
  }
  16%,
  84% {
    opacity: 1;
  }
  100% {
    transform: translateX(520px) scale(1.08);
    opacity: 0;
  }
}

@keyframes uploadSweep {
  0% {
    transform: translateX(-90px) rotate(7deg);
    opacity: 0;
  }
  18%,
  82% {
    opacity: 1;
  }
  100% {
    transform: translateX(74px) rotate(7deg);
    opacity: 0;
  }
}

@keyframes barBreathe {
  0%,
  100% {
    opacity: 0.72;
    transform: scaleY(0.96);
  }
  50% {
    opacity: 1;
    transform: scaleY(1.04);
  }
}

@keyframes watchPing {
  0%,
  100% {
    box-shadow:
      inset 0 0 0 1px rgba(255, 255, 255, 0.06),
      0 18px 42px rgba(0, 0, 0, 0.25),
      0 0 0 rgba(19, 184, 169, 0);
  }
  50% {
    box-shadow:
      inset 0 0 0 1px rgba(255, 255, 255, 0.1),
      0 22px 48px rgba(0, 0, 0, 0.28),
      0 0 28px rgba(19, 184, 169, 0.24);
  }
}

@keyframes watchSignal {
  0% {
    transform: scale(0.7);
    opacity: 0.76;
  }
  100% {
    transform: scale(1.6);
    opacity: 0;
  }
}

@media (max-width: 860px) {
  .page-shell {
    width: min(100% - 24px, 680px);
  }

  .site-header {
    width: min(100% - 24px, 680px);
    align-items: flex-start;
    border-radius: 24px;
  }

  .site-nav {
    flex-wrap: wrap;
    justify-content: flex-end;
  }

  .hero,
  .intro-band,
  .prototype-feature,
  .skill-grid,
  .work-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 185vh;
    padding: 0;
  }

  .hero-stage {
    min-height: 100vh;
  }

  .hero-copy {
    top: 24%;
    left: 12px;
    width: calc(100% - 220px);
  }

  .hero-orbit {
    width: min(570px, 82vw, 76vh);
    min-height: 0;
  }

  .hero-docked .hero-orbit {
    top: 92px;
    left: calc(100vw - 74px);
    transform: translate(-50%, 0) scale(0.25);
  }

  .hero-horizon-line {
    top: 95.12%;
    left: -14vw;
    right: -14vw;
  }

  .bubble-girl-art {
    right: -6%;
    bottom: -4%;
    width: min(600px, 100%);
  }

  .main-card {
    right: 0;
    bottom: 2%;
    left: auto;
    top: auto;
  }

  .planet-c {
    right: 4%;
    bottom: 154px;
  }

  .timeline article {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .prototype-copy {
    max-width: none;
  }

  .prototype-stage {
    min-height: 510px;
  }

  .prototype-demo-stage {
    min-height: min(760px, 118vw);
  }

  .demo-video-viewer {
    min-height: min(630px, 96vw);
  }

  .care-continuum-stage {
    min-height: 560px;
  }

  .selected-prototype-stage {
    min-height: 640px;
  }

  .care-empowerment-stage {
    min-height: 660px;
  }

  .selected-prototype-grid {
    inset: 28px;
    grid-template-columns: minmax(130px, 0.9fr) minmax(130px, 0.9fr);
    grid-template-rows: minmax(360px, 1.6fr) minmax(180px, 0.8fr);
  }

  .patient-login-shot,
  .patient-ai-shot {
    grid-row: 1;
  }

  .patient-login-shot {
    grid-column: 1;
  }

  .patient-ai-shot {
    grid-column: 2;
  }

  .watch-shot {
    grid-column: 1;
    grid-row: 2;
  }

  .desktop-shot {
    grid-column: 2;
    grid-row: 2;
  }

  .scan-phone {
    left: 56%;
  }
}

@media (max-width: 560px) {
  .site-header {
    top: 10px;
    flex-direction: column;
  }

  .site-nav {
    justify-content: flex-start;
  }

  .site-nav a {
    padding-inline: 10px;
  }

  .hero {
    min-height: 175vh;
    padding: 0;
  }

  .hero-stage {
    min-height: 100vh;
  }

  .hero-copy {
    top: 26%;
    left: 12px;
    width: 100%;
    padding-right: 78px;
  }

  .hero-orbit {
    width: min(500px, 94vw, 72vh);
    min-height: 0;
  }

  .hero-scroll-indicator {
    bottom: 8%;
    width: 28px;
    height: 42px;
  }

  .hero-docked .hero-orbit {
    top: 116px;
    left: calc(100vw - 54px);
    transform: translate(-50%, 0) scale(0.2);
  }

  .hero-horizon-line {
    top: 95.12%;
    left: -10vw;
    right: -10vw;
  }

  .bubble-girl-art {
    right: 0;
    bottom: -3%;
    width: 100%;
    opacity: 0.84;
  }

  .main-card {
    right: -2%;
    bottom: 0;
    top: auto;
    left: auto;
    width: min(210px, 64vw);
  }

  .planet-c {
    right: 1%;
    bottom: 136px;
  }

  .main-card strong {
    font-size: 30px;
  }

  .planet {
    width: 76px;
    height: 76px;
    font-size: 13px;
  }

  .prototype-flow {
    gap: 5px;
  }

  .prototype-flow span {
    min-height: 38px;
    padding: 7px 5px;
    font-size: 10px;
  }

  .main-card {
    padding: 18px 20px;
  }

  .section {
    padding: 52px 0;
  }

  .contact-panel {
    padding: 28px;
  }

  .contact-actions .button {
    width: 100%;
  }

  .prototype-feature {
    gap: 26px;
    margin-top: 34px;
    padding-top: 36px;
  }

  .prototype-stage {
    min-height: 430px;
    border-radius: 24px;
  }

  .prototype-demo-stage {
    min-height: 680px;
    padding: 16px;
  }

  .demo-meta {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }

  .demo-video-viewer {
    min-height: 570px;
    padding: 10px;
    border-radius: 20px;
  }

  .demo-video {
    border-radius: 14px;
  }

  .care-continuum-stage {
    min-height: 560px;
  }

  .selected-prototype-stage {
    min-height: 650px;
  }

  .care-empowerment-stage {
    min-height: 780px;
  }

  .care-motion-path {
    top: 18px;
    right: 14px;
    left: 14px;
  }

  .care-motion-path::before {
    right: 4%;
    left: 4%;
  }

  .path-node {
    min-width: 56px;
    padding: 6px 7px;
    font-size: 9px;
  }

  .node-one {
    left: 10%;
  }

  .node-two {
    left: 37%;
  }

  .node-three {
    left: 64%;
  }

  .node-four {
    left: 90%;
  }

  .palette-swatch {
    top: 74px;
    left: 18px;
    width: 120px;
    height: 90px;
    border-radius: 20px;
    opacity: 0.18;
  }

  .dental-tool-mark {
    right: -24px;
    bottom: 186px;
    transform: scale(0.72);
    transform-origin: right bottom;
  }

  .care-motion-board {
    inset: 82px 16px 18px;
  }

  .care-motion-board::before {
    top: 41%;
    right: 3%;
    left: 3%;
  }

  .entry-card {
    top: 92px;
    left: 0;
    width: 92px;
    height: 188px;
  }

  .upload-card {
    top: 56px;
    left: 104px;
    width: 148px;
    height: 336px;
  }

  .upload-scan {
    top: 70px;
    bottom: 42px;
    width: 24px;
  }

  .ai-card {
    top: 178px;
    right: 0;
    width: 92px;
    height: 190px;
  }

  .watch-care-card {
    top: 0;
    right: 2px;
    width: 106px;
    height: 126px;
  }

  .desktop-care-card {
    right: 0;
    bottom: 8px;
    left: 0;
    width: auto;
    height: 156px;
  }

  .therapy-idea {
    top: 420px;
    bottom: auto;
    left: 0;
    width: 150px;
  }

  .support-idea {
    top: 492px;
    right: 0;
    bottom: auto;
    left: auto;
    width: 154px;
  }

  .motion-card {
    padding: 7px;
    border-radius: 16px;
  }

  .motion-card img {
    border-radius: 12px;
  }

  .motion-card figcaption {
    padding-top: 7px;
  }

  .motion-card figcaption span,
  .care-idea-card span {
    font-size: 8px;
  }

  .motion-card figcaption strong,
  .care-idea-card strong {
    font-size: 10px;
  }

  .care-idea-card {
    padding: 11px 12px;
    border-radius: 15px;
  }

  .portfolio-showcase-stage {
    min-height: 760px;
  }

  .portfolio-showcase-stage .care-motion-path {
    top: 18px;
    right: 12px;
    left: 12px;
  }

  .portfolio-showcase-stage .path-node {
    min-width: 54px;
    padding: 6px 7px;
    font-size: 9px;
  }

  .portfolio-showcase-stage .palette-swatch {
    top: 76px;
    left: 16px;
    width: 126px;
    height: 92px;
    opacity: 0.24;
  }

  .portfolio-showcase-stage .dental-tool-mark {
    right: -28px;
    bottom: 156px;
    transform: scale(0.68);
    transform-origin: right bottom;
  }

  .portfolio-showcase-stage .care-motion-board {
    inset: 78px 14px 14px;
  }

  .portfolio-showcase-stage .care-motion-board::before {
    top: 41%;
    right: 4%;
    left: 4%;
  }

  .portfolio-showcase-stage .entry-card {
    top: 112px;
    left: 0;
    width: 86px;
    height: 174px;
    --tilt: -4deg;
  }

  .portfolio-showcase-stage .upload-card {
    top: 60px;
    left: 96px;
    width: 146px;
    height: 334px;
    --tilt: 1deg;
  }

  .portfolio-showcase-stage .ai-card {
    top: 164px;
    right: 0;
    width: 88px;
    height: 182px;
    --tilt: 4deg;
  }

  .portfolio-showcase-stage .watch-care-card {
    top: 0;
    right: 0;
    width: 104px;
    height: 120px;
    --tilt: -3deg;
  }

  .portfolio-showcase-stage .followup-showcase-card {
    top: 414px;
    left: 0;
    width: 102px;
    height: 188px;
  }

  .portfolio-showcase-stage .community-showcase-card {
    top: 414px;
    right: 104px;
    bottom: auto;
    width: 102px;
    height: 188px;
  }

  .portfolio-showcase-stage .desktop-care-card {
    right: 0;
    bottom: 0;
    left: 0;
    width: auto;
    height: 132px;
    --tilt: 1deg;
  }

  .portfolio-showcase-stage .therapy-idea {
    top: 360px;
    bottom: auto;
    left: 0;
    width: 132px;
  }

  .portfolio-showcase-stage .support-idea {
    top: 344px;
    right: 0;
    bottom: auto;
    left: auto;
    width: 132px;
  }

  .selected-prototype-grid {
    inset: 18px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: 372px 196px;
    gap: 12px;
  }

  .prototype-shot {
    padding: 8px;
    border-radius: 16px;
  }

  .prototype-shot img {
    border-radius: 12px;
  }

  .prototype-shot figcaption {
    padding-top: 8px;
  }

  .prototype-shot figcaption strong {
    font-size: 12px;
  }

  .prototype-shot figcaption span {
    font-size: 9px;
  }

  .prototype-board {
    left: 16px;
    bottom: 16px;
    width: 42%;
  }

  .care-continuum-stage .board-before {
    left: 18px;
    bottom: 18px;
    width: 38%;
    opacity: 0.24;
  }

  .care-continuum-stage .board-hospital {
    top: 96px;
    left: 18px;
    bottom: auto;
    width: 152px;
    height: 96px;
    opacity: 0.3;
  }

  .care-continuum-stage .board-after {
    top: auto;
    right: 18px;
    bottom: 70px;
    left: auto;
    width: 112px;
    height: 146px;
    opacity: 0.2;
  }

  .care-continuum-stage .watch-board {
    top: 46px;
    right: 16px;
    bottom: auto;
    width: 170px;
    height: 62px;
    opacity: 0.22;
  }

  .flow-ribbon {
    top: 54px;
    right: 28px;
    left: 28px;
  }

  .care-continuum-stage .flow-ribbon {
    top: 74px;
    right: 30px;
    left: 30px;
  }

  .continuum-line {
    top: 42px;
    right: 26px;
    left: 26px;
  }

  .scan-phone {
    top: 54%;
    left: 58%;
    width: 206px;
    height: 412px;
    border-radius: 31px;
  }

  .care-continuum-stage .scan-phone {
    top: 51%;
    left: 56%;
  }

  .clinical-panel {
    top: 188px;
    left: 18px;
    z-index: 3;
    width: 128px;
    padding: 12px;
    border-radius: 15px;
    opacity: 0.9;
  }

  .clinical-panel strong,
  .followup-panel strong {
    font-size: 12px;
  }

  .clinical-row {
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 7px;
    margin-top: 9px;
    font-size: 10px;
  }

  .followup-panel {
    right: 18px;
    bottom: 24px;
    z-index: 3;
    width: 142px;
    padding: 12px;
    border-radius: 15px;
    opacity: 0.88;
  }

  .adherence-bars {
    height: 38px;
  }

  .watch-device {
    top: 122px;
    right: 22px;
    z-index: 3;
    width: 82px;
    height: 94px;
    padding: 10px;
    border-width: 4px;
    border-radius: 22px;
  }

  .watch-device strong {
    font-size: 11px;
  }

  .care-continuum-stage .insight-card {
    display: none;
  }

  .phone-speaker {
    width: 72px;
    height: 21px;
  }

  .scan-screen {
    padding: 15px 12px;
  }

  .mouth-card {
    height: 132px;
    margin-top: 15px;
  }

  .result-stack {
    gap: 8px;
    margin-top: 14px;
  }

  .result-stack span {
    min-height: 38px;
    padding-top: 12px;
    font-size: 11px;
  }

  .insight-card {
    z-index: 3;
    min-width: 132px;
    padding: 12px;
    border-radius: 15px;
  }

  .card-one {
    top: 94px;
    left: 18px;
  }

  .card-two {
    right: 18px;
    bottom: 42px;
  }
}

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

  .hero-horizon-line {
    opacity: 0.78;
    transform: translateY(-0.5px) scaleX(1);
  }

  .hero-scroll-indicator {
    transition-delay: 0ms;
  }

  .hero-scroll-indicator {
    animation-delay: 0ms;
  }

  .site-entered .site-content {
    animation: none;
  }

  .color-bubble-overlay,
  .bubble-girl-art {
    clip-path: none;
  }

  .bubble-girl-art {
    opacity: 0.82;
  }

  .planet {
    opacity: 1;
    filter: none;
  }

  .prototype-flow::after {
    transform: translateY(-50%) scaleX(1);
  }

  .prototype-flow span {
    border-color: rgba(17, 178, 164, 0.24);
    color: #315f5b;
    background: rgba(255, 255, 255, 0.88);
    opacity: 1;
    transform: none;
  }
}
