body[data-work="fishman"] {
  --tank-abyss: #03090e;
  --tank-deep: #061923;
  --tank-cyan: #6ad7ff;
  --tank-coral: #ff6b52;
  --tank-foam: #ecf4f4;
  --tank-muted: #7f969e;
}

.feeding-demo {
  padding: 24px 24px clamp(110px, 12vw, 190px);
  overflow: hidden;
  color: var(--tank-foam);
  background:
    radial-gradient(circle at 78% 18%, rgba(106, 215, 255, .12), transparent 28%),
    linear-gradient(155deg, #081e29, var(--tank-abyss) 64%);
}
.feeding-demo-heading {
  display: grid;
  grid-template-columns: .55fr 1.45fr;
  gap: 7vw;
  align-items: start;
  padding: clamp(90px, 10vw, 145px) 0 clamp(58px, 7vw, 105px);
}
.feeding-demo-heading > .eyebrow { color: var(--tank-coral); }
.feeding-demo-heading h2 {
  max-width: 980px;
  margin: 0;
  font-size: clamp(44px, 6.7vw, 102px);
  font-weight: 850;
  line-height: 1.02;
  letter-spacing: -.065em;
  word-break: keep-all;
}
.feeding-demo-heading h2 em { color: var(--tank-cyan); font-style: normal; }
.feeding-demo-heading div > p {
  max-width: 55ch;
  margin: 34px 0 0;
  color: rgba(236, 244, 244, .6);
  font-size: clamp(14px, 1.08vw, 17px);
  line-height: 1.8;
  letter-spacing: -.02em;
  word-break: keep-all;
}

.feeding-lab {
  border-top: 1px solid rgba(236, 244, 244, .72);
  border-bottom: 1px solid rgba(236, 244, 244, .72);
}
.feeding-input {
  display: grid;
  grid-template-columns: minmax(170px, .36fr) minmax(0, 1.64fr);
  padding: 20px 0 24px;
  border-bottom: 1px solid rgba(236, 244, 244, .18);
}
.feeding-input label {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 88px;
  padding-right: clamp(18px, 3vw, 42px);
  color: var(--tank-coral);
  font: 700 9px/1.35 var(--mono);
  letter-spacing: .1em;
}
.feeding-input label small { color: rgba(236, 244, 244, .35); font-size: 8px; }
.feeding-input > div {
  display: grid;
  grid-template-columns: 1fr auto;
  border: 1px solid rgba(236, 244, 244, .28);
  background: rgba(1, 8, 12, .42);
}
.feeding-input input {
  min-width: 0;
  padding: 19px 22px;
  color: var(--tank-foam);
  background: transparent;
  border: 0;
  outline: 0;
  font: 700 clamp(18px, 2vw, 28px)/1.2 var(--body);
  letter-spacing: -.03em;
}
.feeding-input input::placeholder { color: rgba(236, 244, 244, .24); font-weight: 500; }
.feeding-input > div:focus-within { border-color: var(--tank-cyan); box-shadow: inset 0 -2px var(--tank-cyan); }
.feeding-input button {
  display: flex;
  align-items: center;
  gap: clamp(22px, 3vw, 48px);
  padding: 0 22px;
  color: var(--tank-abyss);
  background: var(--tank-cyan);
  border: 0;
  cursor: pointer;
  font-size: 12px;
  font-weight: 850;
  transition: color .2s, background .2s;
}
.feeding-input button:hover { color: var(--tank-foam); background: var(--tank-coral); }
.feeding-input button i { font: 700 18px/1 var(--mono); font-style: normal; }
.feeding-input > p {
  grid-column: 2;
  margin: 11px 0 0;
  color: rgba(236, 244, 244, .36);
  font: 600 8px/1.4 var(--mono);
  letter-spacing: .06em;
}

.fish-tank-shell {
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
  min-height: 790px;
}
.fish-tank-bar,
.fish-tank-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 56px;
  color: rgba(236, 244, 244, .42);
  font: 700 8px/1 var(--mono);
  letter-spacing: .09em;
  text-transform: uppercase;
}
.fish-tank-bar span:first-child { display: flex; align-items: center; gap: 9px; color: var(--tank-cyan); }
.fish-tank-bar i { width: 5px; height: 5px; background: var(--tank-coral); border-radius: 50%; box-shadow: 0 0 12px var(--tank-coral); animation: fish-live 1.5s ease-in-out infinite; }
.fish-tank-bar b { color: var(--tank-foam); font-weight: 700; }
.fish-tank-bar [data-fish-mode="FEEDING"] { color: var(--tank-coral); }
@keyframes fish-live { 50% { opacity: .3; } }

.fish-tank {
  position: relative;
  min-height: 660px;
  overflow: hidden;
  background: var(--tank-abyss);
  border: 1px solid rgba(236, 244, 244, .22);
  isolation: isolate;
}
.fish-tank::after {
  position: absolute;
  z-index: 2;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(115deg, rgba(255,255,255,.025), transparent 25%, transparent 75%, rgba(106,215,255,.025));
  content: "";
}
[data-fish-tank] {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 660px;
}
[data-fish-tank]:focus-visible { outline: 2px solid var(--tank-cyan); outline-offset: -4px; }
.tank-depth {
  position: absolute;
  z-index: 3;
  top: 18px;
  right: 15px;
  bottom: 18px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding-right: 12px;
  border-right: 1px solid rgba(106, 215, 255, .3);
  color: rgba(106, 215, 255, .42);
  font: 700 7px/1 var(--mono);
  pointer-events: none;
}
.tank-empty {
  position: absolute;
  z-index: 3;
  bottom: 20px;
  left: 22px;
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  color: rgba(236, 244, 244, .34);
  font: 700 8px/1 var(--mono);
  letter-spacing: .09em;
  pointer-events: none;
  transition: opacity .3s, transform .3s;
}
.tank-empty span { width: 28px; height: 1px; background: var(--tank-coral); }
.tank-empty.is-hidden { opacity: 0; transform: translateY(6px); }
.fish-tank-footer { min-height: 74px; }
.fish-tank-footer > p { margin: 0; text-transform: none; letter-spacing: -.01em; }
.fish-tank-footer button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-width: 150px;
  padding: 11px 13px;
  color: var(--tank-foam);
  background: transparent;
  border: 1px solid rgba(236, 244, 244, .22);
  cursor: pointer;
  font: 700 9px/1 var(--mono);
  transition: color .2s, background .2s, border-color .2s;
}
.fish-tank-footer button:hover { color: var(--tank-abyss); background: var(--tank-cyan); border-color: var(--tank-cyan); }
.fish-tank-footer button i { font-size: 16px; font-style: normal; font-weight: 400; }

@media (max-width: 840px) {
  .feeding-demo-heading { grid-template-columns: 1fr; gap: 28px; }
  .feeding-input { grid-template-columns: 1fr; }
  .feeding-input label { display: flex; flex-direction: row; min-height: 0; padding: 0 0 15px; }
  .feeding-input > p { grid-column: 1; }
}

@media (max-width: 560px) {
  .feeding-demo { padding-right: 16px; padding-left: 16px; }
  .feeding-demo-heading { padding-top: 68px; padding-bottom: 50px; }
  .feeding-demo-heading h2 { font-size: 43px; }
  .feeding-input > div { grid-template-columns: 1fr; }
  .feeding-input input { padding: 17px 14px; font-size: 18px; }
  .feeding-input button { justify-content: space-between; min-height: 48px; padding: 0 14px; }
  .fish-tank-shell { min-height: 650px; }
  .fish-tank, [data-fish-tank] { min-height: 520px; }
  .fish-tank-bar { align-items: flex-start; min-height: 65px; padding: 14px 0; line-height: 1.5; }
  .fish-tank-bar span:last-child { text-align: right; }
  .fish-tank-footer { display: block; padding: 16px 0; }
  .fish-tank-footer > p { margin-bottom: 14px; line-height: 1.5; }
  .fish-tank-footer button { width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  .fish-tank-bar i { animation: none; }
}
